From 1b386378c5209518282fa3a2aff0af4794560f1b Mon Sep 17 00:00:00 2001 From: Dewey Dunnington Date: Fri, 8 Sep 2023 16:38:04 -0300 Subject: [PATCH 1/2] give it a try with all versions unpinned --- python/geoarrow-c/pyproject.toml | 2 +- python/geoarrow-pandas/pyproject.toml | 2 +- python/geoarrow-pyarrow/pyproject.toml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/python/geoarrow-c/pyproject.toml b/python/geoarrow-c/pyproject.toml index 0341a3c2..eeba4641 100644 --- a/python/geoarrow-c/pyproject.toml +++ b/python/geoarrow-c/pyproject.toml @@ -25,7 +25,7 @@ license = {text = "Apache-2.0"} requires-python = ">=3.8" [project.optional-dependencies] -test = ["pyarrow<13.0.0", "pytest", "numpy"] +test = ["pyarrow", "pytest", "numpy"] [project.urls] homepage = "https://geoarrow.org" diff --git a/python/geoarrow-pandas/pyproject.toml b/python/geoarrow-pandas/pyproject.toml index cba56a1c..1963b2e8 100644 --- a/python/geoarrow-pandas/pyproject.toml +++ b/python/geoarrow-pandas/pyproject.toml @@ -23,7 +23,7 @@ description = "" authors = [{name = "Dewey Dunnington", email = "dewey@dunnington.ca"}] license = {text = "Apache-2.0"} requires-python = ">=3.8" -dependencies = ["geoarrow-c", "pandas", "pyarrow<13.0.0"] +dependencies = ["geoarrow-c", "pandas", "pyarrow"] [project.optional-dependencies] test = ["pytest", "numpy", "geopandas"] diff --git a/python/geoarrow-pyarrow/pyproject.toml b/python/geoarrow-pyarrow/pyproject.toml index 6e7f5923..97c35172 100644 --- a/python/geoarrow-pyarrow/pyproject.toml +++ b/python/geoarrow-pyarrow/pyproject.toml @@ -23,7 +23,7 @@ description = "" authors = [{name = "Dewey Dunnington", email = "dewey@dunnington.ca"}] license = {text = "Apache-2.0"} requires-python = ">=3.8" -dependencies = ["geoarrow-c", "pyarrow<13.0.0"] +dependencies = ["geoarrow-c", "pyarrow"] [project.optional-dependencies] test = ["pytest", "pandas", "numpy", "geopandas"] From 1ca0ece547f6325af0bbcdcef53687c6874e4878 Mon Sep 17 00:00:00 2001 From: Dewey Dunnington Date: Fri, 8 Sep 2023 16:56:24 -0300 Subject: [PATCH 2/2] just pin geoarrow-pandas --- python/geoarrow-pandas/pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/geoarrow-pandas/pyproject.toml b/python/geoarrow-pandas/pyproject.toml index 1963b2e8..cba56a1c 100644 --- a/python/geoarrow-pandas/pyproject.toml +++ b/python/geoarrow-pandas/pyproject.toml @@ -23,7 +23,7 @@ description = "" authors = [{name = "Dewey Dunnington", email = "dewey@dunnington.ca"}] license = {text = "Apache-2.0"} requires-python = ">=3.8" -dependencies = ["geoarrow-c", "pandas", "pyarrow"] +dependencies = ["geoarrow-c", "pandas", "pyarrow<13.0.0"] [project.optional-dependencies] test = ["pytest", "numpy", "geopandas"]