From 05a7de433d6f73fe5b8d8c69d9deeb62032993be Mon Sep 17 00:00:00 2001 From: pgValero <67552686+pgValero@users.noreply.github.com> Date: Fri, 19 Jul 2024 15:14:10 +0200 Subject: [PATCH] Update setup.py to restrict python version >= 3.9 (#1725) * Update setup.py Release 0.17.0 is incompatible with Python < 3.8 "python_requires" added to only install this version with python >= 3.9 * Update setup.py --- setup.py | 1 + 1 file changed, 1 insertion(+) diff --git a/setup.py b/setup.py index 9ff9c31..7013179 100644 --- a/setup.py +++ b/setup.py @@ -155,6 +155,7 @@ setup( maintainer='Tom Kralidis', maintainer_email='tomkralidis@gmail.com', url='https://pygeoapi.io', + python_requires='>=3.10', install_requires=read('requirements.txt').splitlines(), packages=find_packages(exclude=['pygeoapi.tests']), include_package_data=True,