diff --git a/.github/workflows/tests.yaml b/.github/workflows/tests.yaml index 916c07c5..325c43ad 100644 --- a/.github/workflows/tests.yaml +++ b/.github/workflows/tests.yaml @@ -24,6 +24,7 @@ jobs: - ci/envs/311-conda-forge.yaml - ci/envs/312-latest-conda-forge.yaml - ci/envs/313-latest-conda-forge.yaml + - ci/envs/314-latest-conda-forge.yaml include: - os: macos-15-intel environment-file: ci/envs/313-latest-conda-forge.yaml diff --git a/ci/envs/314-latest-conda-forge.yaml b/ci/envs/314-latest-conda-forge.yaml new file mode 100644 index 00000000..b389d1f4 --- /dev/null +++ b/ci/envs/314-latest-conda-forge.yaml @@ -0,0 +1,18 @@ +name: test-environment +channels: + - conda-forge +dependencies: + - python=3.14 + # required + - geopy + - matplotlib + - mercantile + - pillow + - rasterio + - requests + - joblib + - xyzservices + # testing + - pip + - pytest + - pytest-cov \ No newline at end of file diff --git a/pyproject.toml b/pyproject.toml index 913367ad..1c06a900 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -23,6 +23,7 @@ classifiers = [ "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", "Programming Language :: Python :: 3.13", + "Programming Language :: Python :: 3.14", "Framework :: Matplotlib", ] requires-python = ">=3.10"