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

Ensure support for Python 3.12 and PyPy 3.8-3.10 #553

Merged
merged 1 commit into from
Dec 9, 2023
Merged
Show file tree
Hide file tree
Changes from all 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
23 changes: 14 additions & 9 deletions .github/workflows/ci-cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,15 @@ jobs:
needs: [lint]
strategy:
matrix:
pyver: ['3.8', '3.9', '3.10', '3.11']
pyver:
- '3.12'
- '3.11'
- '3.10'
- '3.9'
- '3.8'
- 'pypy3.10'
- 'pypy3.9'
- 'pypy3.8'
no-extensions: ['', 'Y']
experimental: [false]
os: [ubuntu, macos, windows]
Expand All @@ -76,15 +84,12 @@ jobs:
no-extensions: 'Y'
- os: windows
no-extensions: 'Y'
include:
- pyver: 3.12-dev
- pyver: pypy3.10
no-extensions: ''
- pyver: pypy3.9
no-extensions: ''
- pyver: pypy3.8
no-extensions: ''
experimental: true
os: ubuntu
- pyver: 3.12-dev
no-extensions: 'Y'
experimental: true
os: ubuntu
fail-fast: false
runs-on: ${{ matrix.os }}-latest
timeout-minutes: 15
Expand Down
1 change: 1 addition & 0 deletions CHANGES/553.feature
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Ensure support for Python 3.12 and PyPy 3.8-3.10.
3 changes: 3 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,9 @@ classifiers =
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
Programming Language :: Python :: Implementation :: CPython
Programming Language :: Python :: Implementation :: PyPy
Development Status :: 5 - Production/Stable
Operating System :: POSIX
Operating System :: MacOS :: MacOS X
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tox]

envlist = check, clean, {py38,py39,py310,py311,py312}-{cython,pure}, report
envlist = check, clean, py3{12,11,10,9,8}-{cython,pure}, pypy3{10,9,8}-pure, report

[testenv]

Expand Down
Loading