Skip to content

Commit

Permalink
Ensure support for Python 3.12 and PyPy 3.8-3.10
Browse files Browse the repository at this point in the history
These changes:
  * enable testing for Python 3.12 and PyPy 3.8-3.10
  * update classifiers at setup.cfg
  * add a news fragment
  • Loading branch information
Jamim committed Nov 21, 2023
1 parent f7a344e commit d50234a
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 10 deletions.
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

0 comments on commit d50234a

Please sign in to comment.