Skip to content

Commit 8ff4c57

Browse files
committed
Specify pyarrow 18.0.0 as the lower bound for python 3.13
Signed-off-by: David Black <[email protected]>
1 parent 20d53b6 commit 8ff4c57

File tree

2 files changed

+60
-3
lines changed

2 files changed

+60
-3
lines changed

poetry.lock

+56-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

+4-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,10 @@ numpy = [
2424
]
2525
openpyxl = "^3.0.10"
2626
urllib3 = ">=1.26"
27-
pyarrow = { version = ">=14.0.1", optional=true }
27+
pyarrow = [
28+
{ version = ">=14.0.1", python = ">=3.8,<3.13", optional=true },
29+
{ version = ">=18.0.0", python = ">=3.13", optional=true }
30+
]
2831

2932
[tool.poetry.extras]
3033
pyarrow = ["pyarrow"]

0 commit comments

Comments
 (0)