Skip to content

Commit 7d5370d

Browse files
committed
Add support for Python 3.15
1 parent 904aa71 commit 7d5370d

2 files changed

Lines changed: 13 additions & 2 deletions

File tree

.github/workflows/pythonpackage.yml

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,22 +17,28 @@ jobs:
1717
strategy:
1818
matrix:
1919
os-type: [ubuntu, macos, windows]
20-
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12", "3.13", "3.13t", "3.14", "3.14t"]
20+
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12", "3.13", "3.13t", "3.14", "3.14t", "3.15", "3.15t"]
2121
exclude:
2222
- os-type: macos
2323
python-version: "3.7" # Not available for the ARM-based macOS runners.
2424
- os-type: macos
2525
python-version: "3.13t"
2626
- os-type: macos
2727
python-version: "3.14t"
28+
- os-type: macos
29+
python-version: "3.15t"
2830
- os-type: windows
29-
python-version: "3.13" # FIXME: Fix and enable Python 3.13 and 3.14 on Windows (#1955).
31+
python-version: "3.13" # FIXME: Fix and enable Python 3.13-3.15 on Windows (#1955).
3032
- os-type: windows
3133
python-version: "3.13t"
3234
- os-type: windows
3335
python-version: "3.14"
3436
- os-type: windows
3537
python-version: "3.14t"
38+
- os-type: windows
39+
python-version: "3.15"
40+
- os-type: windows
41+
python-version: "3.15t"
3642
include:
3743
- os-ver: latest
3844
- os-type: ubuntu
@@ -44,6 +50,10 @@ jobs:
4450
- python-version: "3.8"
4551
build-docs: false
4652
- experimental: false
53+
- python-version: "3.15"
54+
experimental: true
55+
- python-version: "3.15t"
56+
experimental: true
4757

4858
fail-fast: false
4959

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -110,5 +110,6 @@ def _stamp_version(filename: str) -> None:
110110
"Programming Language :: Python :: 3.12",
111111
"Programming Language :: Python :: 3.13",
112112
"Programming Language :: Python :: 3.14",
113+
"Programming Language :: Python :: 3.15",
113114
],
114115
)

0 commit comments

Comments
 (0)