Skip to content

Commit 3302322

Browse files
committed
Test on newer Python versions.
1 parent 32704ea commit 3302322

File tree

6 files changed

+32
-10
lines changed

6 files changed

+32
-10
lines changed

.github/workflows/python_ci.yml

Lines changed: 5 additions & 2 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.7,3.8,3.9,3.10'
25+
USING_COVERAGE: '3.7,3.8,3.9,3.10,3.11,3.12,3.13.0-alpha.3'
2626

2727
strategy:
2828
fail-fast: False
@@ -31,7 +31,10 @@ jobs:
3131
- {python-version: "3.7", testenvs: "py37,build", experimental: False}
3232
- {python-version: "3.8", testenvs: "py38,build", experimental: False}
3333
- {python-version: "3.9", testenvs: "py39,build", experimental: False}
34-
- {python-version: "3.10", testenvs: "py310-dev,build", experimental: True}
34+
- {python-version: "3.10", testenvs: "py310,build", experimental: False}
35+
- {python-version: "3.11", testenvs: "py311,build", experimental: False}
36+
- {python-version: "3.12", testenvs: "py312,build", experimental: False}
37+
- {python-version: "3.13.0-alpha.3", testenvs: "py313-dev,build", experimental: True}
3538

3639
steps:
3740
- name: Checkout 🛎️

.github/workflows/python_ci_linux.yml

Lines changed: 5 additions & 2 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.7,3.8,3.9,3.10'
26+
USING_COVERAGE: '3.7,3.8,3.9,3.10,3.11,3.12,3.13.0-alpha.3'
2727

2828
strategy:
2929
fail-fast: False
@@ -32,7 +32,10 @@ jobs:
3232
- {python-version: "3.7", testenvs: "py37,build", experimental: False}
3333
- {python-version: "3.8", testenvs: "py38,build", experimental: False}
3434
- {python-version: "3.9", testenvs: "py39,build", experimental: False}
35-
- {python-version: "3.10", testenvs: "py310-dev,build", experimental: True}
35+
- {python-version: "3.10", testenvs: "py310,build", experimental: False}
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.3", testenvs: "py313-dev,build", experimental: True}
3639

3740
steps:
3841
- name: Checkout 🛎️

.github/workflows/python_ci_macos.yml

Lines changed: 5 additions & 2 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.7,3.8,3.9,3.10'
25+
USING_COVERAGE: '3.7,3.8,3.9,3.10,3.11,3.12,3.13.0-alpha.3'
2626

2727
strategy:
2828
fail-fast: False
@@ -31,7 +31,10 @@ jobs:
3131
- {python-version: "3.7", testenvs: "py37,build", experimental: False}
3232
- {python-version: "3.8", testenvs: "py38,build", experimental: False}
3333
- {python-version: "3.9", testenvs: "py39,build", experimental: False}
34-
- {python-version: "3.10", testenvs: "py310-dev,build", experimental: True}
34+
- {python-version: "3.10", testenvs: "py310,build", experimental: False}
35+
- {python-version: "3.11", testenvs: "py311,build", experimental: False}
36+
- {python-version: "3.12", testenvs: "py312,build", experimental: False}
37+
- {python-version: "3.13.0-alpha.3", testenvs: "py313-dev,build", experimental: True}
3538

3639
steps:
3740
- name: Checkout 🛎️

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ base-classifiers = [
3434
"Topic :: Software Development :: Testing :: Unit",
3535
"Typing :: Typed",
3636
]
37-
python-versions = [ "3.7", "3.8", "3.9",]
37+
python-versions = [ "3.7", "3.8", "3.9", "3.10", "3.11", "3.12",]
3838
python-implementations = [ "CPython",]
3939
platforms = [ "Windows", "macOS", "Linux",]
4040
license-key = "MIT"

repo_helper.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,10 @@ python_versions:
2121
- 3.7
2222
- 3.8
2323
- 3.9
24-
- 3.10-dev
24+
- '3.10'
25+
- '3.11'
26+
- '3.12'
27+
- '3.13-dev'
2528

2629
entry_points:
2730
tox:

tox.ini

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
# * pytest
2020

2121
[tox]
22-
envlist = py37, py38, py39, py310-dev, mypy, build
22+
envlist = py37, py38, py39, py310, py311, py312, py313-dev, mypy, build
2323
skip_missing_interpreters = True
2424
isolated_build = True
2525
requires =
@@ -29,7 +29,7 @@ requires =
2929
virtualenv!=20.16.0
3030

3131
[envlists]
32-
test = py37, py38, py39, py310-dev
32+
test = py37, py38, py39, py310, py311, py312, py313-dev
3333
qa = mypy, lint
3434
cov = py38, coverage
3535

@@ -48,6 +48,16 @@ setenv =
4848
PYTHONDEVMODE=1
4949
PIP_DISABLE_PIP_VERSION_CHECK=1
5050

51+
[testenv:py313-dev]
52+
setenv =
53+
PYTHONDEVMODE=1
54+
PIP_DISABLE_PIP_VERSION_CHECK=1
55+
56+
[testenv:py312]
57+
setenv =
58+
PYTHONDEVMODE=1
59+
PIP_DISABLE_PIP_VERSION_CHECK=1
60+
5161
[testenv:docs]
5262
setenv = SHOW_TODOS = 1
5363
passenv = SPHINX_BUILDER

0 commit comments

Comments
 (0)