Skip to content

Commit 35ee049

Browse files
committed
Test on Python 3.12 final
1 parent e735a45 commit 35ee049

File tree

7 files changed

+17
-12
lines changed

7 files changed

+17
-12
lines changed

.github/workflows/python_ci.yml

Lines changed: 2 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,3.12.0-rc.1,pypy-3.6,pypy-3.7,pypy-3.8,pypy-3.9,pypy-3.10'
25+
USING_COVERAGE: '3.6,3.7,3.8,3.9,3.10,3.11,3.12,pypy-3.6,pypy-3.7,pypy-3.8,pypy-3.9,pypy-3.10'
2626

2727
strategy:
2828
fail-fast: False
@@ -34,7 +34,7 @@ jobs:
3434
- {python-version: "3.9", testenvs: "py39,build", experimental: False}
3535
- {python-version: "3.10", testenvs: "py310,build", experimental: False}
3636
- {python-version: "3.11", testenvs: "py311,build", experimental: False}
37-
- {python-version: "3.12.0-rc.1", testenvs: "py312-dev,build", experimental: True}
37+
- {python-version: "3.12", testenvs: "py312,build", experimental: False}
3838
- {python-version: "pypy-3.6", testenvs: "pypy36", experimental: False}
3939
- {python-version: "pypy-3.7", testenvs: "pypy37,build", experimental: False}
4040
- {python-version: "pypy-3.8", testenvs: "pypy38,build", experimental: False}

.github/workflows/python_ci_linux.yml

Lines changed: 2 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,3.12.0-rc.1,pypy-3.6,pypy-3.7,pypy-3.8,pypy-3.9,pypy-3.10'
26+
USING_COVERAGE: '3.6,3.7,3.8,3.9,3.10,3.11,3.12,pypy-3.6,pypy-3.7,pypy-3.8,pypy-3.9,pypy-3.10'
2727

2828
strategy:
2929
fail-fast: False
@@ -35,7 +35,7 @@ jobs:
3535
- {python-version: "3.9", testenvs: "py39,build", experimental: False}
3636
- {python-version: "3.10", testenvs: "py310,build", experimental: False}
3737
- {python-version: "3.11", testenvs: "py311,build", experimental: False}
38-
- {python-version: "3.12.0-rc.1", testenvs: "py312-dev,build", experimental: True}
38+
- {python-version: "3.12", testenvs: "py312,build", experimental: False}
3939
- {python-version: "pypy-3.6", testenvs: "pypy36,build", experimental: False}
4040
- {python-version: "pypy-3.7", testenvs: "pypy37,build", experimental: False}
4141
- {python-version: "pypy-3.8", testenvs: "pypy38,build", experimental: False}

.github/workflows/python_ci_macos.yml

Lines changed: 2 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,3.12.0-rc.1,pypy-3.7,pypy-3.8,pypy-3.9,pypy-3.10'
25+
USING_COVERAGE: '3.6,3.7,3.8,3.9,3.10,3.11,3.12,pypy-3.7,pypy-3.8,pypy-3.9,pypy-3.10'
2626

2727
strategy:
2828
fail-fast: False
@@ -34,7 +34,7 @@ jobs:
3434
- {python-version: "3.9", testenvs: "py39,build", experimental: False}
3535
- {python-version: "3.10", testenvs: "py310,build", experimental: False}
3636
- {python-version: "3.11", testenvs: "py311,build", experimental: False}
37-
- {python-version: "3.12.0-rc.1", testenvs: "py312-dev,build", experimental: True}
37+
- {python-version: "3.12", testenvs: "py312,build", experimental: False}
3838
- {python-version: "pypy-3.7", testenvs: "pypy37,build", experimental: False}
3939
- {python-version: "pypy-3.8", testenvs: "pypy38,build", experimental: False}
4040
- {python-version: "pypy-3.9", testenvs: "pypy39,build", experimental: True}

pyproject.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ classifiers = [
2222
"Programming Language :: Python :: 3.9",
2323
"Programming Language :: Python :: 3.10",
2424
"Programming Language :: Python :: 3.11",
25+
"Programming Language :: Python :: 3.12",
2526
"Programming Language :: Python :: Implementation :: CPython",
2627
"Programming Language :: Python :: Implementation :: PyPy",
2728
"Topic :: Software Development :: Libraries :: Python Modules",
@@ -144,7 +145,7 @@ base-classifiers = [
144145
"Topic :: Software Development :: Libraries :: Python Modules",
145146
"Typing :: Typed",
146147
]
147-
python-versions = [ "3.6", "3.7", "3.8", "3.9", "3.10", "3.11",]
148+
python-versions = [ "3.6", "3.7", "3.8", "3.9", "3.10", "3.11", "3.12",]
148149
python-implementations = [ "CPython", "PyPy",]
149150
platforms = [ "Windows", "macOS", "Linux",]
150151
license-key = "MIT"

repo_helper.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,9 @@ python_versions:
2525
3.9:
2626
"3.10":
2727
"3.11":
28-
"3.12-dev":
29-
experimental: true
28+
"3.12":
29+
# "3.13-dev":
30+
# experimental: true
3031
pypy36:
3132
pypy37:
3233
pypy38:

setup.cfg

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ classifiers =
3434
Programming Language :: Python :: 3.9
3535
Programming Language :: Python :: 3.10
3636
Programming Language :: Python :: 3.11
37+
Programming Language :: Python :: 3.12
3738
Programming Language :: Python :: Implementation :: CPython
3839
Programming Language :: Python :: Implementation :: PyPy
3940
Topic :: Software Development :: Libraries :: Python Modules

tox.ini

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,9 @@
33
# * tox
44
# * envlists
55
# * testenv:.package
6+
# * testenv:py313-dev
67
# * testenv:py312-dev
8+
# * testenv:py312
79
# * testenv:docs
810
# * testenv:build
911
# * testenv:lint
@@ -25,7 +27,7 @@ envlist =
2527
py39
2628
py310
2729
py311
28-
py312-dev
30+
py312
2931
pypy36
3032
pypy37
3133
pypy38
@@ -49,7 +51,7 @@ test =
4951
py39
5052
py310
5153
py311
52-
py312-dev
54+
py312
5355
pypy36
5456
pypy37
5557
pypy38
@@ -63,7 +65,7 @@ setenv =
6365
PYTHONDEVMODE=1
6466
PIP_DISABLE_PIP_VERSION_CHECK=1
6567

66-
[testenv:py312-dev]
68+
[testenv:py312]
6769
setenv =
6870
PYTHONDEVMODE=1
6971
PIP_DISABLE_PIP_VERSION_CHECK=1

0 commit comments

Comments
 (0)