Skip to content

Commit 7ea2a7b

Browse files
authored
Merge pull request #461 from Point72/tkp/missingdep
Set appropriate lower bound for pyarrow, add missing required runtime dep on pydantic
2 parents f2bca84 + d33ce80 commit 7ea2a7b

File tree

2 files changed

+4
-6
lines changed

2 files changed

+4
-6
lines changed

conda/dev-environment-unix.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ dependencies:
3030
- pillow
3131
- polars
3232
- psutil
33-
- pyarrow>=7,<19
33+
- pyarrow>=15,<19
3434
- pydantic>=2
3535
- pytest
3636
- pytest-asyncio

pyproject.toml

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ requires = [
33
"cmake",
44
"deprecated", # Because used in csp.impl.struct, which is used in autogen
55
"oldest-supported-numpy",
6-
"pyarrow>=7,<19",
6+
"pyarrow>=15,<19",
77
"ruamel.yaml",
88
"scikit-build",
99
"setuptools>=69,<74",
@@ -25,7 +25,8 @@ dependencies = [
2525
"packaging",
2626
"pandas",
2727
"psutil",
28-
"pyarrow>=7,<19",
28+
"pyarrow>=15,<19",
29+
"pydantic>=2",
2930
"pytz",
3031
"ruamel.yaml",
3132
"sqlalchemy",
@@ -85,8 +86,6 @@ develop = [
8586
"threadpoolctl", # test_random
8687
"tornado", # profiler, perspective, websocket
8788
"python-rapidjson", # websocket
88-
# type checking
89-
"pydantic>=2",
9089
]
9190
showgraph = [
9291
"graphviz",
@@ -103,7 +102,6 @@ test = [
103102
"perspective-python",
104103
"polars",
105104
"psutil",
106-
"pydantic>=2",
107105
"requests",
108106
"slack-sdk>=3",
109107
"sqlalchemy",

0 commit comments

Comments
 (0)