Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
- macos-latest
python-version:
- "3.10"
- "3.13"
- "3.x"

steps:
# Pixi should manage Python versions, but it doesn't work on Windows in GitHub Actions
Expand Down
4 changes: 2 additions & 2 deletions pixi.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 3 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,9 @@ classifiers = [
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
]
requires-python = ">=3.10,<3.14"
requires-python = ">=3.10"
# This is duplicate, must also be changed below in the pixi configuration
dependencies = [
"pyyaml>=6.0,<7.0",
Expand Down Expand Up @@ -58,7 +59,7 @@ channels = ["conda-forge"]
platforms = ["win-64", "linux-64", "osx-64", "osx-arm64"]

[tool.pixi.dependencies]
python = ">=3.10,<3.14"
python = ">=3.10"
pyyaml = ">=6.0,<7.0"
click = ">=8.1,<9.0"
geopandas = ">=1.0.0,<2.0"
Expand Down
Loading