From 08dd87a5834a302ea341fcce2dd5c8a1fd41e09f Mon Sep 17 00:00:00 2001 From: Felix Oesterle <6945681+fso42@users.noreply.github.com> Date: Thu, 15 Jan 2026 14:37:58 +0100 Subject: [PATCH] Restrict Python version compatibility to <3.14 --- pyproject.toml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 27317c7..034df57 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -25,7 +25,7 @@ classifiers = [ "Programming Language :: Python :: 3.12", "Programming Language :: Python :: 3.13", ] -requires-python = ">=3.9" +requires-python = ">=3.9,<3.14" dependencies = [ ] @@ -49,6 +49,7 @@ channels = ["conda-forge/label/qgis_ltr", "https://prefix.dev/conda-forge"] platforms = ["linux-64", "win-64", "osx-64"] [tool.pixi.dependencies] +python = ">=3.9,<3.14" pytest = "*" setuptools = "*"