Skip to content

Commit d0ec51c

Browse files
committed
Mark Python 3.12 and 13 as experimental.
1 parent 3283e17 commit d0ec51c

5 files changed

Lines changed: 17 additions & 15 deletions

File tree

.github/workflows/python_ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,8 @@ jobs:
3333
- {python-version: "3.9", testenvs: "py39,build", experimental: False}
3434
- {python-version: "3.10", testenvs: "py310,build", experimental: False}
3535
- {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-dev,build", experimental: True}
36+
- {python-version: "3.12", testenvs: "py312,build", experimental: True}
37+
- {python-version: "3.13", testenvs: "py313,build", experimental: True}
3838

3939
steps:
4040
- name: Checkout 🛎️

.github/workflows/python_ci_linux.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,8 @@ 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", testenvs: "py312,build", experimental: False}
38-
- {python-version: "3.13", testenvs: "py313-dev,build", experimental: True}
37+
- {python-version: "3.12", testenvs: "py312,build", experimental: True}
38+
- {python-version: "3.13", testenvs: "py313,build", experimental: True}
3939

4040
steps:
4141
- name: Checkout 🛎️

pyproject.toml

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

repo_helper.yml

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,15 @@ enable_docs: False
1515
use_whey: true
1616

1717
python_versions:
18-
- 3.7
19-
- 3.8
20-
- 3.9
21-
- "3.10"
22-
- "3.11"
23-
- "3.12"
24-
- 3.13-dev
18+
3.7:
19+
3.8:
20+
3.9:
21+
"3.10":
22+
3.11:
23+
3.12:
24+
experimental: true
25+
3.13:
26+
experimental: true
2527

2628
entry_points:
2729
tox:

tox.ini

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
# * pytest
2323

2424
[tox]
25-
envlist = py37, py38, py39, py310, py311, py312, py313-dev, mypy, build
25+
envlist = py37, py38, py39, py310, py311, py312, py313, mypy, build
2626
skip_missing_interpreters = True
2727
isolated_build = True
2828
requires =
@@ -31,7 +31,7 @@ requires =
3131
virtualenv!=20.16.0
3232

3333
[envlists]
34-
test = py37, py38, py39, py310, py311, py312, py313-dev
34+
test = py37, py38, py39, py310, py311, py312, py313
3535
qa = mypy, lint
3636
cov = py38, coverage
3737

@@ -50,7 +50,7 @@ setenv =
5050
PYTHONDEVMODE=1
5151
PIP_DISABLE_PIP_VERSION_CHECK=1
5252

53-
[testenv:py313-dev]
53+
[testenv:py313]
5454
download = True
5555
setenv =
5656
PYTHONDEVMODE=1

0 commit comments

Comments
 (0)