From e3da016848098638240948de4e9af4819dd87295 Mon Sep 17 00:00:00 2001 From: Romain Hugonnet Date: Fri, 29 Dec 2023 11:50:12 +0100 Subject: [PATCH] Fix max Python version --- setup.cfg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.cfg b/setup.cfg index 2335bb8e..e9316ba1 100644 --- a/setup.cfg +++ b/setup.cfg @@ -33,7 +33,7 @@ download_url = https://pypi.org/project/xdem/ packages = find: zip_safe = False # https://mypy.readthedocs.io/en/stable/installed_packages.html include_package_data = True -python_requires = >=3.9 +python_requires = >=3.9,<3.12 # Avoid pinning dependencies in requirements.txt (which we don't do anyways, and we rely mostly on Conda) # (https://caremad.io/posts/2013/07/setup-vs-requirement/, https://github.com/pypa/setuptools/issues/1951) install_requires = file: requirements.txt