Skip to content

Commit 43adcea

Browse files
committed
build: include 3.14 in the usual Pythons
1 parent fb2b49f commit 43adcea

File tree

5 files changed

+6
-5
lines changed

5 files changed

+6
-5
lines changed

.github/workflows/coverage.yml

+1
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@ jobs:
5050
- "3.11"
5151
- "3.12"
5252
- "3.13"
53+
- "3.14"
5354
- "pypy-3.9"
5455
- "pypy-3.10"
5556
exclude:

.github/workflows/kit.yml

+2-4
Original file line numberDiff line numberDiff line change
@@ -152,8 +152,7 @@ jobs:
152152
- name: "Install Python"
153153
uses: actions/setup-python@f677139bbe7f9c59b41e40162b753c062f5d49a3 # v5.2.0
154154
with:
155-
# PYVERSIONS
156-
python-version: "3.9"
155+
python-version: "3.9" # Minimum of PYVERSIONS
157156
cache: pip
158157
cache-dependency-path: 'requirements/*.pip'
159158

@@ -197,8 +196,7 @@ jobs:
197196
- name: "Install Python"
198197
uses: actions/setup-python@f677139bbe7f9c59b41e40162b753c062f5d49a3 # v5.2.0
199198
with:
200-
# PYVERSIONS
201-
python-version: "3.9"
199+
python-version: "3.9" # Minimum of PYVERSIONS
202200
cache: pip
203201
cache-dependency-path: 'requirements/*.pip'
204202

.github/workflows/testsuite.yml

+1
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@ jobs:
5050
- "3.11"
5151
- "3.12"
5252
- "3.13"
53+
- "3.14"
5354
- "pypy-3.9"
5455
- "pypy-3.10"
5556
exclude:

setup.py

+1
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@
2828
Programming Language :: Python :: 3.11
2929
Programming Language :: Python :: 3.12
3030
Programming Language :: Python :: 3.13
31+
Programming Language :: Python :: 3.14
3132
Programming Language :: Python :: Implementation :: CPython
3233
Programming Language :: Python :: Implementation :: PyPy
3334
Topic :: Software Development :: Quality Assurance

tox.ini

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
[tox]
55
# When changing this list, be sure to check the [gh] list below.
66
# PYVERSIONS
7-
envlist = py3{9,10,11,12,13}, pypy3, doc, lint, mypy
7+
envlist = py3{9,10,11,12,13,14}, pypy3, doc, lint, mypy
88
skip_missing_interpreters = {env:COVERAGE_SKIP_MISSING_INTERPRETERS:True}
99
toxworkdir = {env:TOXWORKDIR:.tox}
1010

0 commit comments

Comments
 (0)