Skip to content

Commit

Permalink
Python 3.13 (#820)
Browse files Browse the repository at this point in the history
Signed-off-by: Geoffroy Jamgotchian <geoffroy.jamgotchian@rte-france.com>
  • Loading branch information
geofjamg authored Oct 14, 2024
1 parent 18821c0 commit 804efb2
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/dev-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
manylinux_build:
name: Build linux ${{ matrix.python.name }} wheel
runs-on: ubuntu-latest
container: quay.io/pypa/manylinux2014_x86_64:2024-07-01-8dac23b
container: quay.io/pypa/manylinux2014_x86_64:2024-10-07-1887322
env:
ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION: true
strategy:
Expand Down
11 changes: 10 additions & 1 deletion .github/workflows/full-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
manylinux_build:
name: Build linux ${{ matrix.python.name }} wheel
runs-on: ubuntu-latest
container: quay.io/pypa/manylinux2014_x86_64:2024-07-01-8dac23b
container: quay.io/pypa/manylinux2014_x86_64:2024-10-07-1887322
env:
ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION: true
strategy:
Expand Down Expand Up @@ -44,6 +44,11 @@ jobs:
abi: cp312,
version: '3.12'
}
- {
name: cp313,
abi: cp313,
version: '3.13'
}

steps:
- name: Install Maven
Expand Down Expand Up @@ -169,6 +174,10 @@ jobs:
name: cp312,
version: '3.12',
}
- {
name: cp313,
version: '3.13',
}

steps:
- name: Setup GraalVM
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
manylinux_build:
name: Build linux ${{ matrix.python.name }} wheel
runs-on: ubuntu-latest
container: quay.io/pypa/manylinux2014_x86_64:2024-07-01-8dac23b
container: quay.io/pypa/manylinux2014_x86_64:2024-10-07-1887322
env:
ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION: true
strategy:
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ Notebooks demonstrating PyPowSyBl features can be found in this [repository](htt

## Installation

PyPowSyBl is released on [PyPi](https://pypi.org/project/pypowsybl/) for Python 3.8 to 3.12, on Linux, Windows and MacOS.
PyPowSyBl is released on [PyPi](https://pypi.org/project/pypowsybl/) for Python 3.8 to 3.13, on Linux, Windows and MacOS.

First, make sure you have an up-to-date version of pip and setuptools:
```bash
Expand Down
6 changes: 3 additions & 3 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ pandas==2.2.2; python_version >= "3.9"
pandas==2.0.3; python_version <= "3.8"
prettytable==2.0.0
networkx
matplotlib==3.9.0; python_version >= "3.9"
matplotlib; python_version <= "3.8"
matplotlib==3.9.2; python_version >= "3.9"
matplotlib==3.7.5; python_version <= "3.8"

# documentation dependencies
sphinx==7.1.2
Expand All @@ -14,7 +14,7 @@ furo==2024.1.29
setuptools==73.0.1
wheel==0.44.0
coverage==7.3.2
pytest>=6.2.5
pytest>=8.3.3
mypy==0.982
pandas-stubs==2.2.2.240603; python_version >= "3.9"
pandas-stubs==2.0.3.230814; python_version <= "3.8"
Expand Down
1 change: 1 addition & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ classifiers =
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
Programming Language :: Python :: 3.13
Programming Language :: Python :: Implementation :: CPython
License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)
Operating System :: POSIX :: Linux
Expand Down

0 comments on commit 804efb2

Please sign in to comment.