From c18a27dfd6ed6081487a2ab0f19b2d94e914065d Mon Sep 17 00:00:00 2001 From: Joris Van den Bossche Date: Sat, 29 Oct 2022 09:19:18 +0200 Subject: [PATCH] Remove shapely <2 pin in install requirements (#2622) --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index e5c40bd..d12ea2f 100644 --- a/setup.py +++ b/setup.py @@ -34,7 +34,7 @@ if os.environ.get("READTHEDOCS", False) == "True": else: INSTALL_REQUIRES = [ "pandas >= 1.0.0", - "shapely >= 1.7, < 2", + "shapely >= 1.7", "fiona >= 1.8", "pyproj >= 2.6.1.post1", "packaging",