Skip to content

Commit 1e6906a

Browse files
authored
Workaround issues in Ray 1.8.0 (#197)
1 parent e58a6e0 commit 1e6906a

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

python/setup.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -95,9 +95,11 @@ def run(self):
9595
"pandas >= 1.1.4",
9696
"psutil",
9797
"pyarrow >= 0.10",
98-
"ray >= 1.8.0",
98+
"ray[default] >= 1.8.0",
9999
"pyspark >= 3.2.0",
100-
"netifaces"
100+
"netifaces",
101+
# pin the version to workaround bug in its 3.8.0
102+
"aiohttp == 3.7.4"
101103
]
102104

103105
_packages = find_packages()

0 commit comments

Comments
 (0)