Skip to content

Commit 2f9e281

Browse files
authored
limit pandas version (#52)
(until ray publishes fix). Also, Ray[default] includes many things not actually required to use this package, so back down to a more limited set that is. Set python upper limit (really from ray, so maybe redundant)
1 parent 3299d02 commit 2f9e281

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,11 @@ description = ""
88
readme = "README.md"
99
license = {file = "LICENSE"}
1010

11-
requires-python = ">=3.10" # colabfold utilities expect this (for now)
11+
requires-python = ">=3.10,<3.12" # prob can relax the lower limit...
1212
dependencies = [
13-
"pandas",
13+
"pandas<2.2", # due to ray, track at: https://github.com/ray-project/ray/issues/42842
1414
"numpy",
15-
"ray[default]",
15+
"ray[data]",
1616
"pyarrow",
1717
"networkx",
1818
]

requirements/prd.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
ray[default]==2.9.1
1+
ray[default]==2.9.3
22
async-timeout==4.0.3
33
pandas==2.1.4
44
pyarrow==14.0.2

0 commit comments

Comments
 (0)