earthdaily / earthdaily-python-client

EarthDaily python client
https://earthdaily.github.io/earthdaily-python-client/
MIT License
11 stars 6 forks source link

Edit python>=3.10 to setup.py #2

Closed robmarkcole closed 10 months ago

robmarkcole commented 11 months ago

Possibly 3.10 is also supported? Can be specified with

from setuptools import setup

setup(
    ...
    python_requires='>=3.11',
    ...
)
robmarkcole commented 11 months ago

On mac at least, I am getting errors on 3.11 and 3.10 due to pyproj

robmarkcole commented 11 months ago

No issues on Mac now thanks

robmarkcole commented 11 months ago

@nkarasiak now have python_requires=">=3.9",

which results in

TypeError: unsupported operand type(s) for |: 'type' and 'type'

3.10 or above is required

Verified:

    python_requires=">=3.10",