Skip to content

Commit

Permalink
build: include 3.14 in the usual Pythons
Browse files Browse the repository at this point in the history
  • Loading branch information
nedbat committed Oct 17, 2024
1 parent fb2b49f commit 43adcea
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 5 deletions.
1 change: 1 addition & 0 deletions .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ jobs:
- "3.11"
- "3.12"
- "3.13"
- "3.14"
- "pypy-3.9"
- "pypy-3.10"
exclude:
Expand Down
6 changes: 2 additions & 4 deletions .github/workflows/kit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -152,8 +152,7 @@ jobs:
- name: "Install Python"
uses: actions/setup-python@f677139bbe7f9c59b41e40162b753c062f5d49a3 # v5.2.0
with:
# PYVERSIONS
python-version: "3.9"
python-version: "3.9" # Minimum of PYVERSIONS
cache: pip
cache-dependency-path: 'requirements/*.pip'

Expand Down Expand Up @@ -197,8 +196,7 @@ jobs:
- name: "Install Python"
uses: actions/setup-python@f677139bbe7f9c59b41e40162b753c062f5d49a3 # v5.2.0
with:
# PYVERSIONS
python-version: "3.9"
python-version: "3.9" # Minimum of PYVERSIONS
cache: pip
cache-dependency-path: 'requirements/*.pip'

Expand Down
1 change: 1 addition & 0 deletions .github/workflows/testsuite.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ jobs:
- "3.11"
- "3.12"
- "3.13"
- "3.14"
- "pypy-3.9"
- "pypy-3.10"
exclude:
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
Programming Language :: Python :: 3.13
Programming Language :: Python :: 3.14
Programming Language :: Python :: Implementation :: CPython
Programming Language :: Python :: Implementation :: PyPy
Topic :: Software Development :: Quality Assurance
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
[tox]
# When changing this list, be sure to check the [gh] list below.
# PYVERSIONS
envlist = py3{9,10,11,12,13}, pypy3, doc, lint, mypy
envlist = py3{9,10,11,12,13,14}, pypy3, doc, lint, mypy
skip_missing_interpreters = {env:COVERAGE_SKIP_MISSING_INTERPRETERS:True}
toxworkdir = {env:TOXWORKDIR:.tox}

Expand Down

0 comments on commit 43adcea

Please sign in to comment.