-
Notifications
You must be signed in to change notification settings - Fork 202
Update supported Python versions #358
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
base: develop
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
|
@@ -13,7 +13,7 @@ jobs: | |||||||||||||||||||||
| fail-fast: false | ||||||||||||||||||||||
| matrix: | ||||||||||||||||||||||
| os: [ubuntu-latest, macOS-latest, windows-latest] | ||||||||||||||||||||||
| python-version: ["3.9", "3.10", "3.11", "3.12", "3.13", "3.14"] | ||||||||||||||||||||||
| python-version: ["3.10", "3.11", "3.12", "3.13", "3.14", "3.14t", "3.15-dev"] | ||||||||||||||||||||||
|
|
||||||||||||||||||||||
| steps: | ||||||||||||||||||||||
| - uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 | ||||||||||||||||||||||
|
|
@@ -23,8 +23,7 @@ jobs: | |||||||||||||||||||||
| python-version: ${{ matrix.python-version }} | ||||||||||||||||||||||
|
Comment on lines
16
to
23
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. suggestion: Do not use When 3.15 officially comes out, we will have to adjust the workflow file again. A better approach would to allow prereleases in
Suggested change
|
||||||||||||||||||||||
| - name: Install dependencies | ||||||||||||||||||||||
| run: | | ||||||||||||||||||||||
| pip install pip==25.1.0 | ||||||||||||||||||||||
| pip install -r requirements.txt | ||||||||||||||||||||||
| python -m pip install -r requirements.txt | ||||||||||||||||||||||
| python -m pip install . | ||||||||||||||||||||||
| - name: Test with pytest | ||||||||||||||||||||||
| run: | | ||||||||||||||||||||||
|
|
||||||||||||||||||||||
| Original file line number | Diff line number | Diff line change | ||||||
|---|---|---|---|---|---|---|---|---|
|
|
@@ -32,5 +32,6 @@ | |||||||
| 'Programming Language :: Python :: 3.14', | ||||||||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. suggestion: Also add 3.15 to the classifiers
Suggested change
|
||||||||
| 'Programming Language :: Python :: Implementation :: CPython', | ||||||||
| 'Programming Language :: Python :: Implementation :: PyPy', | ||||||||
| 'Programming Language :: Python :: Free Threading :: 2 - Beta', | ||||||||
| ], | ||||||||
| ) | ||||||||
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.
suggestion: Also test on
3.15t