Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[WIP] Retry to add python 3.13 #902

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/dev-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ jobs:
matrix:
python:
- {
name: cp38,
abi: cp38,
version: '3.8',
name: cp313,
abi: cp313,
version: '3.13',
}

steps:
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/full-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,11 +42,11 @@ jobs:
abi: cp312,
version: '3.12'
}
# - {
# name: cp313,
# abi: cp313,
# version: '3.13'
# }
- {
name: cp313,
abi: cp313,
version: '3.13'
}

steps:
- name: Install Linux Packages
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,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
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# actual dependencies
pandas==2.2.2; python_version >= "3.9"
pandas==2.2.3; python_version >= "3.9"
pandas==2.0.3; python_version <= "3.8"
prettytable==3.11.0 # last version supporting python 3.8
networkx
Expand Down
4 changes: 2 additions & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +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 :: 3.13
Programming Language :: Python :: Implementation :: CPython
License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)
Operating System :: POSIX :: Linux
Expand All @@ -30,7 +30,7 @@ packages = find:
python_requires = >=3.8
install_requires =
prettytable>=2.0.0
pandas>=2.2.2; python_version >= "3.9"
pandas>=2.2.3; python_version >= "3.9"
pandas>=2.0.3; python_version <= "3.8"
networkx

Expand Down
Loading