Skip to content

Commit c70d8f7

Browse files
committed
Test on newer Python versions.
1 parent d27f570 commit c70d8f7

File tree

6 files changed

+31
-6
lines changed

6 files changed

+31
-6
lines changed

.github/workflows/python_ci.yml

Lines changed: 4 additions & 1 deletion
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'
2626

2727
strategy:
2828
fail-fast: False
@@ -32,6 +32,9 @@ jobs:
3232
- {python-version: "3.8", testenvs: "py38,build", experimental: False}
3333
- {python-version: "3.9", testenvs: "py39,build", experimental: False}
3434
- {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", testenvs: "py313,build", experimental: False}
3538

3639
steps:
3740
- name: Checkout 🛎️

.github/workflows/python_ci_linux.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
runs-on: "ubuntu-22.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'
2727

2828
strategy:
2929
fail-fast: False
@@ -33,6 +33,9 @@ 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,build", experimental: False}
37+
- {python-version: "3.12", testenvs: "py312,build", experimental: False}
38+
- {python-version: "3.13", testenvs: "py313,build", experimental: False}
3639

3740
steps:
3841
- name: Checkout 🛎️

.github/workflows/python_ci_macos.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
runs-on: "macos-${{ matrix.config.os-ver }}"
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'
2626

2727
strategy:
2828
fail-fast: False
@@ -32,6 +32,9 @@ jobs:
3232
- {python-version: "3.8", os-ver: "14", testenvs: "py38,build", experimental: False}
3333
- {python-version: "3.9", os-ver: "14", testenvs: "py39,build", experimental: False}
3434
- {python-version: "3.10", os-ver: "14", testenvs: "py310,build", experimental: False}
35+
- {python-version: "3.11", os-ver: "14", testenvs: "py311,build", experimental: False}
36+
- {python-version: "3.12", os-ver: "14", testenvs: "py312,build", experimental: False}
37+
- {python-version: "3.13", os-ver: "14", testenvs: "py313,build", experimental: False}
3538

3639
steps:
3740
- name: Checkout 🛎️

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ base-classifiers = [
3535
"Topic :: Software Development :: Version Control :: Git",
3636
"Typing :: Typed",
3737
]
38-
python-versions = [ "3.7", "3.8", "3.9", "3.10",]
38+
python-versions = [ "3.7", "3.8", "3.9", "3.10", "3.11", "3.12", "3.13",]
3939
python-implementations = [ "CPython",]
4040
platforms = [ "Windows", "macOS", "Linux",]
4141
license-key = "MIT"

repo_helper.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,9 @@ python_versions:
2525
- 3.8
2626
- 3.9
2727
- "3.10"
28+
- "3.11"
29+
- "3.12"
30+
- "3.13"
2831

2932
keywords:
3033
- github

tox.ini

Lines changed: 15 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, mypy, build
22+
envlist = py37, py38, py39, py310, py311, py312, py313, 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
32+
test = py37, py38, py39, py310, py311, py312, py313
3333
qa = mypy, lint
3434

3535
[testenv]
@@ -47,6 +47,19 @@ setenv =
4747
PYTHONDEVMODE=1
4848
PIP_DISABLE_PIP_VERSION_CHECK=1
4949

50+
[testenv:py313]
51+
download = True
52+
setenv =
53+
PYTHONDEVMODE=1
54+
PIP_DISABLE_PIP_VERSION_CHECK=1
55+
UNSAFE_PYO3_SKIP_VERSION_CHECK=1
56+
57+
[testenv:py312]
58+
download = True
59+
setenv =
60+
PYTHONDEVMODE=1
61+
PIP_DISABLE_PIP_VERSION_CHECK=1
62+
5063
[testenv:build]
5164
setenv =
5265
PYTHONDEVMODE=1

0 commit comments

Comments
 (0)