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

Update supported versions: add newer CPython and PyPy, drop 3.7 #112

Merged
merged 8 commits into from
Sep 4, 2024
Merged
Show file tree
Hide file tree
Changes from 3 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
5 changes: 3 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
# Python versions in sync with the ones in test.yml.
matrix:
os:
- "macos-11"
- "macos-12"
Comment on lines -38 to +37
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ah, that's good to know... assuming we can build a wheel that works on older macOS. Which cibuildwheel might automate. Or not.

- "ubuntu-22.04"
- "windows-2022"
wheel-selector:
Expand All @@ -44,9 +44,10 @@ jobs:
- "cp310-*"
- "cp311-*"
- "cp312-*"
- "pp37-*"
- "cp313-*"
- "pp38-*"
- "pp39-*"
- "pp310-*"

steps:
- name: Check out zfec sources
Expand Down
7 changes: 4 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,18 +17,19 @@ jobs:
# Python versions in sync with the ones in build.yml.
matrix:
os:
- "macos-11"
- "macos-latest"
- "ubuntu-22.04"
- "windows-2022"
python-version:
- "3.7"
- "3.8"
- "3.9"
- "3.10"
- "3.11"
- "pypy-3.7"
- "3.12"
- "3.13-dev"
- "pypy-3.8"
- "pypy-3.9"
- "pypy-3.10"

steps:

Expand Down
Loading