Skip to content

Commit 91c21e2

Browse files
ESS-4139 Support python 3.14 (#149)
* ESS-4139 Support 3.14 and 3.15 * 3.15 was premature, not stable yet * Using newer versions of Github Actions for checkout and python setup * I don't think we need multiple tox environments specified, GH Actions take care of that --------- Co-authored-by: branislav-jenco-4ss <152614622+branislav-jenco-4ss@users.noreply.github.com>
1 parent 97ff9ee commit 91c21e2

3 files changed

Lines changed: 6 additions & 5 deletions

File tree

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,13 @@ 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"]
1717

1818
steps:
19-
- uses: actions/checkout@v2
19+
- uses: actions/checkout@v3
2020

2121
- name: Set up Python ${{ matrix.python-version }}
22-
uses: actions/setup-python@v2
22+
uses: actions/setup-python@v4
2323
with:
2424
python-version: ${{ matrix.python-version }}
2525

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 and 3.14. We aim to support the
12+
most recent major versions.
1313

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

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ 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",
2021
]
2122
dependencies = [
2223
"numpy",

0 commit comments

Comments
 (0)