From 2cbbb1ff7a9f587308e81eee5e96345647ff0e30 Mon Sep 17 00:00:00 2001 From: jwilliams-ocient <60358443+jwilliams-ocient@users.noreply.github.com> Date: Thu, 29 Jun 2023 15:32:54 -0500 Subject: [PATCH 1/2] chore: set max version for pyocient. Version 3.0 renames a data type class --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 5bd67ca0c2a3e..07fa815c6cf70 100644 --- a/setup.py +++ b/setup.py @@ -167,7 +167,7 @@ def get_git_sha() -> str: "mysql": ["mysqlclient>=2.1.0, <3"], "ocient": [ "sqlalchemy-ocient>=1.0.0", - "pyocient>=1.0.15", + "pyocient>=1.0.15, <3", "shapely", "geojson", ], From 58fe29d4d98a87c64d4e75c0552966056d33ad82 Mon Sep 17 00:00:00 2001 From: jwilliams-ocient <60358443+jwilliams-ocient@users.noreply.github.com> Date: Thu, 29 Jun 2023 15:38:22 -0500 Subject: [PATCH 2/2] chore: set pyocient version requirement to 1.x.x There's no point in supporting 2.x.x here --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 07fa815c6cf70..efccc90e455b7 100644 --- a/setup.py +++ b/setup.py @@ -167,7 +167,7 @@ def get_git_sha() -> str: "mysql": ["mysqlclient>=2.1.0, <3"], "ocient": [ "sqlalchemy-ocient>=1.0.0", - "pyocient>=1.0.15, <3", + "pyocient>=1.0.15, <2", "shapely", "geojson", ],