From cbb6f66ec79c0e2c6420c69db656ef5bf8817ecb Mon Sep 17 00:00:00 2001 From: spwoodcock Date: Tue, 6 Aug 2024 14:47:37 +0100 Subject: [PATCH] fix: relax pin for shapely '==' to '>=' --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 08903c0..3f55146 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -8,7 +8,7 @@ authors = [ ] dependencies = [ "geojson>=3.0.0", - "shapely==2.0.0", + "shapely>=2.0.0", "pyproj>=3.0.0", ] requires-python = ">=3.10"