Skip to content

Commit 9bc792a

Browse files
ESS-4139 Support 3.14 and 3.15
1 parent 97ff9ee commit 9bc792a

3 files changed

Lines changed: 10 additions & 4 deletions

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
strategy:
1414
matrix:
1515
os: [ubuntu-latest, macos-latest, windows-latest]
16-
python-version: ["3.11", "3.12", "3.13"]
16+
python-version: ["3.11", "3.12", "3.13", "3.14", "3.15"]
1717

1818
steps:
1919
- uses: actions/checkout@v2

docs/getting_started.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ Head over to `Python.org`_ for instructions.
88

99
Python version support
1010
----------------------
11-
Officially Python 3.11, 3.12, and 3.13. We aim to support the three most
12-
recent major versions.
11+
Officially Python 3.11, 3.12, 3.13, 3.14, and 3.15. We aim to support the
12+
most recent major versions.
1313

1414
OS support
1515
----------

pyproject.toml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@ classifiers = [
1717
"Programming Language :: Python :: 3.11",
1818
"Programming Language :: Python :: 3.12",
1919
"Programming Language :: Python :: 3.13",
20+
"Programming Language :: Python :: 3.14",
21+
"Programming Language :: Python :: 3.15",
2022
]
2123
dependencies = [
2224
"numpy",
@@ -54,7 +56,11 @@ legacy_tox_ini = """
5456
[tox]
5557
isolated_build = True
5658
envlist =
57-
py
59+
py311
60+
py312
61+
py313
62+
py314
63+
py315
5864
docs
5965
6066
[testenv]

0 commit comments

Comments
 (0)