Skip to content

Commit 33174a2

Browse files
committed
Add Python 3.14 support
1 parent 5188beb commit 33174a2

File tree

4 files changed

+4
-3
lines changed

4 files changed

+4
-3
lines changed

.github/workflows/docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
- name: Set up Python
2828
uses: actions/setup-python@v6
2929
with:
30-
python-version: "3.13"
30+
python-version: "3.14"
3131
cache: "pip"
3232
cache-dependency-path: "**/*requirements.txt"
3333

.github/workflows/lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
strategy:
1818
fail-fast: false
1919
matrix:
20-
python: ["3.10", "3.11", "3.12", "3.13"]
20+
python: ["3.10", "3.11", "3.12", "3.13", "3.14"]
2121

2222
name: "Python ${{ matrix.python }}"
2323
runs-on: ubuntu-24.04

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
fail-fast: false
1919
matrix:
2020
os: ["ubuntu-24.04", "windows-2025"]
21-
python: ["3.10", "3.11", "3.12", "3.13"]
21+
python: ["3.10", "3.11", "3.12", "3.13", "3.14"]
2222

2323
name: "${{ matrix.os }} / Python ${{ matrix.python }}"
2424
runs-on: ${{ matrix.os }}

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ classifiers = [
2626
"Programming Language :: Python :: 3.11",
2727
"Programming Language :: Python :: 3.12",
2828
"Programming Language :: Python :: 3.13",
29+
"Programming Language :: Python :: 3.14",
2930
"Topic :: Scientific/Engineering",
3031
"Topic :: Software Development :: Libraries :: Python Modules",
3132
"Intended Audience :: Developers",

0 commit comments

Comments
 (0)