Skip to content

Commit 10c949b

Browse files
authored
indicate 3.14 support, add it to testing (#598)
1 parent ab61027 commit 10c949b

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

.github/workflows/run_tests.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,13 @@ jobs:
1717
runs-on: ubuntu-latest
1818
strategy:
1919
matrix:
20-
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
20+
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13", "3.14"]
2121
numpy-version: [">=1.25,<2", ">=2"]
2222
exclude:
23-
- python-version: "3.13"
24-
numpy-version: ">=1.25,<2" # numpy<2 is not supported on Python 3.13
23+
- python-version: "3.13" # numpy<2 is not supported on 3.13+
24+
numpy-version: ">=1.25,<2"
25+
- python-version: "3.14"
26+
numpy-version: ">=1.25,<2"
2527

2628
steps:
2729
- uses: actions/checkout@v3

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ classifiers = [
1515
"Programming Language :: Python :: 3.11",
1616
"Programming Language :: Python :: 3.12",
1717
"Programming Language :: Python :: 3.13",
18+
"Programming Language :: Python :: 3.14",
1819
]
1920
dependencies = [
2021
"colorama>=0.4.6",

0 commit comments

Comments
 (0)