Skip to content

Commit 9ee27fd

Browse files
Add support for Python 3.14
1 parent f608df9 commit 9ee27fd

File tree

4 files changed

+5
-3
lines changed

4 files changed

+5
-3
lines changed

.github/actions/setup-env/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description: set up the python environment
44
inputs:
55
python-version:
66
description: "The python version to install and use"
7-
default: "3.12" # we default to latest supported
7+
default: "3.14" # we default to latest supported
88
required: false
99

1010
runs:

.github/workflows/ci-community.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
strategy:
4545
fail-fast: false
4646
matrix:
47-
python-version: ["3.9", "3.10", "3.11", "3.12"]
47+
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13", "3.14"]
4848
module: ${{ fromJSON(needs.track-modules.outputs.changed_modules) }}
4949
steps:
5050
- name: Checkout contents

.github/workflows/ci-core.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
strategy:
1515
fail-fast: false
1616
matrix:
17-
python-version: ["3.9", "3.11", "3.12", "3.13"]
17+
python-version: ["3.9", "3.11", "3.12", "3.13", "3.14"]
1818
steps:
1919
- uses: actions/checkout@v4
2020
- name: Set up Python

pyproject.toml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,8 @@ classifiers = [
2020
"Programming Language :: Python :: 3.10",
2121
"Programming Language :: Python :: 3.11",
2222
"Programming Language :: Python :: 3.12",
23+
"Programming Language :: Python :: 3.13",
24+
"Programming Language :: Python :: 3.14",
2325
"Topic :: Software Development :: Libraries :: Python Modules",
2426
"Operating System :: Microsoft :: Windows",
2527
"Operating System :: POSIX",

0 commit comments

Comments
 (0)