diff --git a/.github/workflows/checks.yml b/.github/workflows/checks.yml index 2169548..302b2a4 100644 --- a/.github/workflows/checks.yml +++ b/.github/workflows/checks.yml @@ -21,7 +21,7 @@ jobs: - macos-latest python-version: - "3.10" - - "3.13" + - "3.14" steps: # Pixi should manage Python versions, but it doesn't work on Windows in GitHub Actions diff --git a/pixi.lock b/pixi.lock index 584f4c5..c4c918e 100644 --- a/pixi.lock +++ b/pixi.lock @@ -14533,7 +14533,7 @@ packages: - json-stream>=2.3.0,<3.0 - flatdict>=4.0,<5.0 - loguru==0.7.3 - requires_python: '>=3.10,<3.14' + requires_python: '>=3.10' editable: true - conda: https://conda.anaconda.org/conda-forge/noarch/virtualenv-20.35.0-pyhd8ed1ab_0.conda sha256: af3c8d1fdde55d40ee472f9552202c39c4edb5da3edcc493318f7cb934dbe0d2 diff --git a/pyproject.toml b/pyproject.toml index ab96ed0..2070b78 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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", @@ -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"