From 33553c5ff0ed5aa79c07a01bb1e197e70daf571c Mon Sep 17 00:00:00 2001 From: Martin Raspaud Date: Mon, 6 Feb 2023 17:53:06 +0100 Subject: [PATCH] Add shapely as a hard dependency --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 1016c73e5..7a0bae933 100644 --- a/setup.py +++ b/setup.py @@ -29,6 +29,7 @@ requirements = ['setuptools>=3.2', 'pyproj>=3.0', 'configobj', 'pykdtree>=1.3.1', 'pyyaml', 'numpy>=1.10.0', + "shapely", ] if sys.version_info < (3, 10): @@ -43,8 +44,7 @@ 'cf': ['xarray'], 'gradient_search': ['shapely'], 'xarray_bilinear': ['xarray', 'dask', 'zarr'], - 'tests': test_requires, - "geos_areas": ["shapely"]} + 'tests': test_requires} setup_requires = ['numpy>=1.10.0', 'cython']