-
Notifications
You must be signed in to change notification settings - Fork 193
Add Python 3.13 to CI and to release #1291
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
Conversation
@@ -24,7 +24,7 @@ | |||
|
|||
def install_rustworkx(session): | |||
session.install(*deps) | |||
session.install(".", "-c", "constraints.txt") | |||
session.install(".[all]", "-c", "constraints.txt") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I removed this by accident in #1290
Putting this on hold until October 7 |
Pull Request Test Coverage Report for Build 11769405948Details
💛 - Coveralls |
And we are affected by python-pillow/Pillow#6676, MyPy is getting smarter although not when I wanted |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This LGTM, but before merging we probably should update the trove classifiers in the setup.py: https://github.com/Qiskit/rustworkx/blob/main/setup.py#L72
I added 3.13 to that list. I also just removed |
The test build is running at https://github.com/IvanIsCoding/rustworkx/actions/runs/11332447391. |
The test build passed, all the failures are permission issues because we omitted the PyPI tokens. This is good to go |
After the NumPy bump in #1305 we no longer need to drop the Windows 32-bit build. All builds are working now |
* Add 3.13 support * Enable pillow for 3.13 tests * Fix stub tests * Bump cibuildwheel to build with candidate and not rc * Remove win32 builds * Add 3.13 to supported list * Re-introduce win32
* Add 3.13 support * Enable pillow for 3.13 tests * Fix stub tests * Bump cibuildwheel to build with candidate and not rc * Remove win32 builds * Add 3.13 to supported list * Re-introduce win32
This adds Python 3.13 to CI and bumps
cibuildwheel
to the latest version.I will test the wheel build on my personal repository before merging.