From cd337af4135bdc9a70a3867011f2fc435ab0c9db Mon Sep 17 00:00:00 2001 From: Xee authors Date: Fri, 6 Oct 2023 21:21:51 -0700 Subject: [PATCH] Minimum Python version is actually 3.9 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 --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index df7116e..83f0f70 100644 --- a/setup.py +++ b/setup.py @@ -50,7 +50,7 @@ }, url='https://github.com/google/xee', packages=setuptools.find_packages(exclude=['examples']), - python_requires='>=3.8', + python_requires='>=3.9', entry_points={ 'xarray.backends': ['ee=xee:EarthEngineBackendEntrypoint'], }