Skip to content

Commit cefb0c4

Browse files
committed
Enable testing on Python up to 3.12
Since the newer dependency versions and the code itself are now compatible with newer Python versions, we can test the package up to 3.12. Add pypy3 to the test matrix while at it.
1 parent f6041d7 commit cefb0c4

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
strategy:
1313
fail-fast: false
1414
matrix:
15-
python-version: ["3.7", "3.8", "3.9"]
15+
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12-dev", "pypy-3.8", "pypy-3.9", "pypy-3.10"]
1616
os: [ubuntu-22.04, macOS-latest, windows-latest]
1717

1818
steps:

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py27,py36,py37
2+
envlist = py27,py36,py37,py38,py39,py310,py311,py312,pypy3
33

44
[testenv]
55
commands =

0 commit comments

Comments
 (0)