Skip to content

Commit bfeabbf

Browse files
committed
Test on newer Python versions
1 parent 50b26a1 commit bfeabbf

File tree

6 files changed

+30
-10
lines changed

6 files changed

+30
-10
lines changed

.github/workflows/python_ci.yml

Lines changed: 4 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.6,3.7,3.8,3.9,3.10,3.11'
25+
USING_COVERAGE: '3.6,3.7,3.8,3.9,3.10,3.11,3.12,3.13.0-alpha.1'
2626

2727
strategy:
2828
fail-fast: False
@@ -33,7 +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-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

3840
steps:
3941
- name: Checkout 🛎️

.github/workflows/python_ci_linux.yml

Lines changed: 4 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.6,3.7,3.8,3.9,3.10,3.11'
26+
USING_COVERAGE: '3.6,3.7,3.8,3.9,3.10,3.11,3.12,3.13.0-alpha.1'
2727

2828
strategy:
2929
fail-fast: False
@@ -34,7 +34,9 @@ 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

3941
steps:
4042
- name: Checkout 🛎️

.github/workflows/python_ci_macos.yml

Lines changed: 4 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.6,3.7,3.8,3.9,3.10,3.11'
25+
USING_COVERAGE: '3.6,3.7,3.8,3.9,3.10,3.11,3.12,3.13.0-alpha.1'
2626

2727
strategy:
2828
fail-fast: False
@@ -33,7 +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-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

3840
steps:
3941
- name: Checkout 🛎️

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ base-classifiers = [
3131
"Topic :: Utilities",
3232
"Typing :: Typed",
3333
]
34-
python-versions = [ "3.6", "3.7", "3.8", "3.9", "3.10",]
34+
python-versions = [ "3.6", "3.7", "3.8", "3.9", "3.10", "3.11", "3.12",]
3535
python-implementations = [ "CPython",]
3636
platforms = [ "Windows", "macOS", "Linux",]
3737
license-key = "MIT"

repo_helper.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,9 @@ python_versions:
2525
- '3.8'
2626
- '3.9'
2727
- "3.10"
28-
- 3.11-dev
28+
- "3.11"
29+
- "3.12"
30+
- 3.13-dev
2931

3032
classifiers:
3133
- 'Development Status :: 4 - Beta'

tox.ini

Lines changed: 14 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
@@ -16,7 +18,7 @@
1618
# * pytest
1719

1820
[tox]
19-
envlist = py36, py37, py38, py39, py310, py311-dev, mypy, build
21+
envlist = py36, py37, py38, py39, py310, py311, py312, py313-dev, mypy, build
2022
skip_missing_interpreters = True
2123
isolated_build = True
2224
requires =
@@ -26,7 +28,7 @@ requires =
2628
virtualenv!=20.16.0
2729

2830
[envlists]
29-
test = py36, py37, py38, py39, py310, py311-dev
31+
test = py36, py37, py38, py39, py310, py311, py312, py313-dev
3032
qa = mypy, lint
3133

3234
[testenv]
@@ -44,6 +46,16 @@ setenv =
4446
PYTHONDEVMODE=1
4547
PIP_DISABLE_PIP_VERSION_CHECK=1
4648

49+
[testenv:py313-dev]
50+
setenv =
51+
PYTHONDEVMODE=1
52+
PIP_DISABLE_PIP_VERSION_CHECK=1
53+
54+
[testenv:py312]
55+
setenv =
56+
PYTHONDEVMODE=1
57+
PIP_DISABLE_PIP_VERSION_CHECK=1
58+
4759
[testenv:build]
4860
setenv =
4961
PYTHONDEVMODE=1

0 commit comments

Comments
 (0)