Skip to content

Commit ce06d3a

Browse files
committed
Test on newer Python versions
1 parent 2586e42 commit ce06d3a

File tree

6 files changed

+40
-16
lines changed

6 files changed

+40
-16
lines changed

.github/workflows/python_ci.yml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
runs-on: "windows-2019"
2323
continue-on-error: ${{ matrix.config.experimental }}
2424
env:
25-
USING_COVERAGE: '3.6,3.7,3.8,3.9,3.10,3.11,pypy-3.6,pypy-3.7,pypy-3.8,pypy-3.9'
25+
USING_COVERAGE: '3.6,3.7,3.8,3.9,3.10,3.11,3.12,3.13.0-alpha.1,pypy-3.6,pypy-3.7,pypy-3.8,pypy-3.9'
2626

2727
strategy:
2828
fail-fast: False
@@ -33,10 +33,12 @@ jobs:
3333
- {python-version: "3.8", testenvs: "py38,build", experimental: False}
3434
- {python-version: "3.9", testenvs: "py39,build", experimental: False}
3535
- {python-version: "3.10", testenvs: "py310,build", experimental: False}
36-
- {python-version: "3.11", testenvs: "py311-dev,build", experimental: True}
36+
- {python-version: "3.11", testenvs: "py311,build", experimental: False}
37+
- {python-version: "3.12", testenvs: "py312,build", experimental: False}
38+
- {python-version: "3.13.0-alpha.1", testenvs: "py313-dev,build", experimental: True}
3739
- {python-version: "pypy-3.6", testenvs: "pypy36", experimental: False}
38-
- {python-version: "pypy-3.7", testenvs: "pypy37,build", experimental: True}
39-
- {python-version: "pypy-3.8", testenvs: "pypy38,build", experimental: True}
40+
- {python-version: "pypy-3.7", testenvs: "pypy37,build", experimental: False}
41+
- {python-version: "pypy-3.8", testenvs: "pypy38,build", experimental: False}
4042
- {python-version: "pypy-3.9", testenvs: "pypy39,build", experimental: True}
4143

4244
steps:

.github/workflows/python_ci_linux.yml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
runs-on: "ubuntu-20.04"
2424
continue-on-error: ${{ matrix.config.experimental }}
2525
env:
26-
USING_COVERAGE: '3.6,3.7,3.8,3.9,3.10,3.11,pypy-3.6,pypy-3.7,pypy-3.8,pypy-3.9'
26+
USING_COVERAGE: '3.6,3.7,3.8,3.9,3.10,3.11,3.12,3.13.0-alpha.1,pypy-3.6,pypy-3.7,pypy-3.8,pypy-3.9'
2727

2828
strategy:
2929
fail-fast: False
@@ -34,10 +34,12 @@ jobs:
3434
- {python-version: "3.8", testenvs: "py38,build", experimental: False}
3535
- {python-version: "3.9", testenvs: "py39,build", experimental: False}
3636
- {python-version: "3.10", testenvs: "py310,build", experimental: False}
37-
- {python-version: "3.11", testenvs: "py311-dev,build", experimental: True}
37+
- {python-version: "3.11", testenvs: "py311,build", experimental: False}
38+
- {python-version: "3.12", testenvs: "py312,build", experimental: False}
39+
- {python-version: "3.13.0-alpha.1", testenvs: "py313-dev,build", experimental: True}
3840
- {python-version: "pypy-3.6", testenvs: "pypy36,build", experimental: False}
39-
- {python-version: "pypy-3.7", testenvs: "pypy37,build", experimental: True}
40-
- {python-version: "pypy-3.8", testenvs: "pypy38,build", experimental: True}
41+
- {python-version: "pypy-3.7", testenvs: "pypy37,build", experimental: False}
42+
- {python-version: "pypy-3.8", testenvs: "pypy38,build", experimental: False}
4143
- {python-version: "pypy-3.9", testenvs: "pypy39,build", experimental: True}
4244

4345
steps:

.github/workflows/python_ci_macos.yml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
runs-on: "macos-latest"
2323
continue-on-error: ${{ matrix.config.experimental }}
2424
env:
25-
USING_COVERAGE: '3.6,3.7,3.8,3.9,3.10,3.11,pypy-3.7,pypy-3.8,pypy-3.9'
25+
USING_COVERAGE: '3.6,3.7,3.8,3.9,3.10,3.11,3.12,3.13.0-alpha.1,pypy-3.7,pypy-3.8,pypy-3.9'
2626

2727
strategy:
2828
fail-fast: False
@@ -33,9 +33,11 @@ jobs:
3333
- {python-version: "3.8", testenvs: "py38,build", experimental: False}
3434
- {python-version: "3.9", testenvs: "py39,build", experimental: False}
3535
- {python-version: "3.10", testenvs: "py310,build", experimental: False}
36-
- {python-version: "3.11", testenvs: "py311-dev,build", experimental: True}
37-
- {python-version: "pypy-3.7", testenvs: "pypy37,build", experimental: True}
38-
- {python-version: "pypy-3.8", testenvs: "pypy38,build", experimental: True}
36+
- {python-version: "3.11", testenvs: "py311,build", experimental: False}
37+
- {python-version: "3.12", testenvs: "py312,build", experimental: False}
38+
- {python-version: "3.13.0-alpha.1", testenvs: "py313-dev,build", experimental: True}
39+
- {python-version: "pypy-3.7", testenvs: "pypy37,build", experimental: False}
40+
- {python-version: "pypy-3.8", testenvs: "pypy38,build", experimental: False}
3941
- {python-version: "pypy-3.9", testenvs: "pypy39,build", experimental: True}
4042

4143
steps:

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ base-classifiers = [
3737
"Intended Audience :: Developers",
3838
"Typing :: Typed",
3939
]
40-
python-versions = [ "3.6", "3.7", "3.8", "3.9", "3.10",]
40+
python-versions = [ "3.6", "3.7", "3.8", "3.9", "3.10", "3.11", "3.12",]
4141
python-implementations = [ "CPython", "PyPy",]
4242
platforms = [ "Windows", "macOS", "Linux",]
4343
license-key = "MIT"

repo_helper.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,9 @@ python_versions:
2929
- '3.8'
3030
- '3.9'
3131
- "3.10"
32-
- 3.11-dev
32+
- "3.11"
33+
- "3.12"
34+
- 3.13-dev
3335
- pypy36
3436
- pypy37
3537
- pypy38

tox.ini

Lines changed: 18 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,9 @@
44
# * envlists
55
# * testenv
66
# * testenv:.package
7+
# * testenv:py313-dev
78
# * testenv:py312-dev
9+
# * testenv:py312
810
# * testenv:docs
911
# * testenv:build
1012
# * testenv:lint
@@ -22,7 +24,9 @@ envlist =
2224
py38
2325
py39
2426
py310
25-
py311-dev
27+
py311
28+
py312
29+
py313-dev
2630
pypy36
2731
pypy37
2832
pypy38
@@ -44,7 +48,9 @@ test =
4448
py38
4549
py39
4650
py310
47-
py311-dev
51+
py311
52+
py312
53+
py313-dev
4854
pypy36
4955
pypy37
5056
pypy38
@@ -66,6 +72,16 @@ setenv =
6672
PYTHONDEVMODE=1
6773
PIP_DISABLE_PIP_VERSION_CHECK=1
6874

75+
[testenv:py313-dev]
76+
setenv =
77+
PYTHONDEVMODE=1
78+
PIP_DISABLE_PIP_VERSION_CHECK=1
79+
80+
[testenv:py312]
81+
setenv =
82+
PYTHONDEVMODE=1
83+
PIP_DISABLE_PIP_VERSION_CHECK=1
84+
6985
[testenv:build]
7086
setenv =
7187
PYTHONDEVMODE=1

0 commit comments

Comments
 (0)