-
Notifications
You must be signed in to change notification settings - Fork 184
Add support for Python 3.14 #1073
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
Not quite. I'll try to finish this up tomorrow. |
|
I think this is ready now |
.github/workflows/ci.yml
Outdated
| uses: actions/[email protected] | ||
| with: | ||
| python-version: ${{ matrix.PYTHON.VERSION }} | ||
| allow-prereleases: true |
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.
We prefer specifying -dev on the versions and not using allow-preleases
.github/workflows/ci.yml
Outdated
| - {VERSION: "3.13", NOXSESSION: "tests"} | ||
| - {VERSION: "3.13t", NOXSESSION: "tests"} | ||
| - {VERSION: "3.14", NOXSESSION: "tests"} | ||
| - {VERSION: "3.14t", NOXSESSION: "tests"} |
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.
While we're happy to add tests for dev releases, these shouldn't be the "default" version we tests against -- that should be whatever the current release of Python is.
I think this is all that's needed.