Skip to content

Commit f40e73f

Browse files
committed
Extend test matrix up to 3.12
1 parent 487793d commit f40e73f

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

.github/workflows/ci.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
strategy:
1212
matrix:
1313
os: [macos-latest, windows-latest]
14-
python-version: [2.7, 3.5, 3.6, 3.7, 3.8, pypy-2.7, pypy-3.7]
14+
python-version: [2.7, 3.5, 3.6, 3.7, 3.8, 3.9, "3.10", 3.11, 3.12, pypy-2.7, pypy-3.7]
1515
exclude:
1616
- os: windows-latest
1717
python-version: 3.6
@@ -65,7 +65,7 @@ jobs:
6565
strategy:
6666
matrix:
6767
os: [macos-latest, windows-latest]
68-
python-version: [2.7, 3.5, 3.6, 3.7, 3.8, pypy-2.7, pypy-3.7]
68+
python-version: [2.7, 3.5, 3.6, 3.7, 3.8, 3.9, "3.10", 3.11, 3.12, pypy-2.7, pypy-3.7]
6969
exclude:
7070
- os: windows-latest
7171
python-version: 3.6

setup.py

+4
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,10 @@
7777
'Programming Language :: Python :: 3.6',
7878
'Programming Language :: Python :: 3.7',
7979
'Programming Language :: Python :: 3.8',
80+
'Programming Language :: Python :: 3.9',
81+
'Programming Language :: Python :: 3.10',
82+
'Programming Language :: Python :: 3.11',
83+
'Programming Language :: Python :: 3.12',
8084
'Programming Language :: Python :: Implementation :: CPython',
8185
'Programming Language :: Python :: Implementation :: PyPy',
8286
'Topic :: Software Development :: Libraries :: Python Modules',

tox.ini

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tox]
22

3-
envlist = py{27,34,35,36,37,38,39-dev,py,py3},check,lint,docs,test_unit,coverage
3+
envlist = py{27,34,35,36,37,38,39,310,311,312,py,py3},check,lint,docs,test_unit,coverage
44
skip_missing_interpreters = true
55

66
[flake8]

0 commit comments

Comments
 (0)