From f6c602872205a3edc4bc7b0092115a0e41e7948d Mon Sep 17 00:00:00 2001 From: daanvaningen Date: Tue, 17 Dec 2024 09:23:27 +0100 Subject: [PATCH] min required python version 3.9 --- pyproject.toml | 1 - setup.py | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 06f25e9c..c6b900f1 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -5,7 +5,6 @@ requires = [ "wheel", "cmake>=3.18", "scikit-build", - "numpy==1.17.3; python_version=='3.8'", "numpy==1.19.3; python_version=='3.9'", "numpy==1.21.3; python_version=='3.10'", "numpy==1.24.2; python_version=='3.11'", diff --git a/setup.py b/setup.py index c5847ad8..723a2391 100644 --- a/setup.py +++ b/setup.py @@ -85,7 +85,7 @@ def get_version(): "gpkg": ["geopandas"], "cli": ["typer"], }, - python_requires=">=3.8", + python_requires=">=3.9", include_package_data=True, classifiers=[ "Programming Language :: Python :: 3",