Skip to content

Commit 868f436

Browse files
committed
Support for Python 3.14
1 parent 4480752 commit 868f436

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

.github/workflows/checks.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
- macos-latest
2222
python-version:
2323
- "3.10"
24-
- "3.x"
24+
- "3.14"
2525

2626
steps:
2727
# Pixi should manage Python versions, but it doesn't work on Windows in GitHub Actions

pyproject.toml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,9 @@ classifiers = [
1818
"Programming Language :: Python :: 3.11",
1919
"Programming Language :: Python :: 3.12",
2020
"Programming Language :: Python :: 3.13",
21+
"Programming Language :: Python :: 3.14",
2122
]
22-
requires-python = ">=3.10,<3.14"
23+
requires-python = ">=3.10"
2324
# This is duplicate, must also be changed below in the pixi configuration
2425
dependencies = [
2526
"pyyaml>=6.0,<7.0",
@@ -58,7 +59,7 @@ channels = ["conda-forge"]
5859
platforms = ["win-64", "linux-64", "osx-64", "osx-arm64"]
5960

6061
[tool.pixi.dependencies]
61-
python = ">=3.10,<3.14"
62+
python = ">=3.10"
6263
pyyaml = ">=6.0,<7.0"
6364
click = ">=8.1,<9.0"
6465
geopandas = ">=1.0.0,<2.0"

0 commit comments

Comments
 (0)