From b57d4eaa972567ab44c8b9f98b3c25ab1b196fc7 Mon Sep 17 00:00:00 2001 From: Thomas Newton Date: Thu, 15 Dec 2022 20:19:56 +0000 Subject: [PATCH 1/2] Less strict dependencies Signed-off-by: Thomas Newton --- pyproject.toml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 4de25271..ece0be71 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -13,15 +13,15 @@ python = "^3.7.1" thrift = "^0.16.0" pandas = "^1.3.0" pyarrow = [ - {version = ">=9.0.0", python = ">=3.7,<3.11"}, + {version = ">=6.0.0", python = ">=3.7,<3.11"}, {version = ">=10.0.1", python = ">=3.11"} ] lz4 = "^4.0.2" requests="^2.18.1" oauthlib="^3.1.0" numpy = [ - {version = "1.21.1", python = ">=3.7,<3.8"}, - {version = "1.23.4", python = ">=3.8"} + {version = ">=1.16.6", python = ">=3.7,<3.8"}, + {version = ">=1.23.4", python = ">=3.11"} ] [tool.poetry.dev-dependencies] From f48ad0710e7237e09baa641aec280b8643bd5b25 Mon Sep 17 00:00:00 2001 From: Thomas Newton Date: Thu, 15 Dec 2022 20:29:15 +0000 Subject: [PATCH 2/2] Fix python version condition Signed-off-by: Thomas Newton --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index ece0be71..25b3c043 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -20,7 +20,7 @@ lz4 = "^4.0.2" requests="^2.18.1" oauthlib="^3.1.0" numpy = [ - {version = ">=1.16.6", python = ">=3.7,<3.8"}, + {version = ">=1.16.6", python = ">=3.7,<3.11"}, {version = ">=1.23.4", python = ">=3.11"} ]