-
Notifications
You must be signed in to change notification settings - Fork 55
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
ci: drop python 3.8, add official 3.13 support #774
base: master
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 | ||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
@@ -88,27 +88,19 @@ jobs: | |||||||||||||||||||
- windows-latest | ||||||||||||||||||||
- macos-latest | ||||||||||||||||||||
python-version: | ||||||||||||||||||||
- '3.8' | ||||||||||||||||||||
- '3.9' | ||||||||||||||||||||
- '3.10' | ||||||||||||||||||||
- '3.11' | ||||||||||||||||||||
- '3.12' | ||||||||||||||||||||
- '3.13-dev' | ||||||||||||||||||||
- '3.13' | ||||||||||||||||||||
constraints: [''] | ||||||||||||||||||||
post_install: [''] | ||||||||||||||||||||
exclude: | ||||||||||||||||||||
# C extension builds failing. | ||||||||||||||||||||
# Remove exclusions after Python 3.13 release. | ||||||||||||||||||||
- os: windows-latest | ||||||||||||||||||||
python-version: '3.13-dev' | ||||||||||||||||||||
- os: macos-latest | ||||||||||||||||||||
python-version: '3.13-dev' | ||||||||||||||||||||
include: | ||||||||||||||||||||
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. I wonder if this will be needed for
Suggested change
|
||||||||||||||||||||
- os: ubuntu-latest | ||||||||||||||||||||
python-version: '3.8' | ||||||||||||||||||||
python-version: '3.9' | ||||||||||||||||||||
constraints: '--constraint constraints-oldest.txt' | ||||||||||||||||||||
- os: ubuntu-latest | ||||||||||||||||||||
python-version: '3.12' | ||||||||||||||||||||
python-version: '3.13' | ||||||||||||||||||||
post_install: pip uninstall -y -r constraints-future.txt ; | ||||||||||||||||||||
pip install -r constraints-future.txt | ||||||||||||||||||||
--upgrade --upgrade-strategy=eager | ||||||||||||||||||||
|
Original file line number | Diff line number | Diff line change | ||||
---|---|---|---|---|---|---|
|
@@ -5,6 +5,7 @@ These features will be included in the next release: | |||||
|
||||||
Added | ||||||
----- | ||||||
- Drop python 3.8, add python 3.13 official support | ||||||
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.
Suggested change
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. In the - Drop support for end-of-life Python 3.8. |
||||||
- New exit codes 2 for file not found, 3 for invalid command line arguments, 4 for | ||||||
missing dependencies and 123 for unknown failures. | ||||||
- Display exit code in parentheses after error message. | ||||||
|
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.