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
This commit is contained in:
pgValero
2024-07-19 15:14:10 +02:00
committed by GitHub
parent c322d3fb40
commit 05a7de433d
+1
View File
@@ -155,6 +155,7 @@ setup(
maintainer='Tom Kralidis', maintainer='Tom Kralidis',
maintainer_email='tomkralidis@gmail.com', maintainer_email='tomkralidis@gmail.com',
url='https://pygeoapi.io', url='https://pygeoapi.io',
python_requires='>=3.10',
install_requires=read('requirements.txt').splitlines(), install_requires=read('requirements.txt').splitlines(),
packages=find_packages(exclude=['pygeoapi.tests']), packages=find_packages(exclude=['pygeoapi.tests']),
include_package_data=True, include_package_data=True,