Skip to content

Commit

Permalink
Minimum Python version is actually 3.9
Browse files Browse the repository at this point in the history
We use 3.9-style type annotations in this codebase. To support 3.8 in the future, we'll need to use a compatible style type annotation.

Fixes #48.

PiperOrigin-RevId: 571504993
  • Loading branch information
Xee authors committed Oct 9, 2023
1 parent 2bee900 commit cd337af
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
},
url='https:/google/xee',
packages=setuptools.find_packages(exclude=['examples']),
python_requires='>=3.8',
python_requires='>=3.9',
entry_points={
'xarray.backends': ['ee=xee:EarthEngineBackendEntrypoint'],
}
Expand Down

0 comments on commit cd337af

Please sign in to comment.