Skip to content

Commit

Permalink
Merge pull request #235 from AnacondaRecipes/ray-async-timeout
Browse files Browse the repository at this point in the history
Add async-timeout to ray-core
  • Loading branch information
ViridianMelody authored Oct 17, 2024
2 parents 399b485 + c6a81c0 commit 077ed82
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions main.py
Original file line number Diff line number Diff line change
Expand Up @@ -1429,6 +1429,11 @@ def patch_record_in_place(fn, record, subdir):
replace_dep(depends, "pandas >=1.3.0", "pandas >=1.3.0,<2")
replace_dep(depends, "pandas >=1.3.0,!=1.5.0", "pandas >=1.3.0,!=1.5.0,<2")

# ray-core needs async-timeout
if name == "ray-core" and VersionOrder(version) < VersionOrder("2.6.4"):
if not any(_.startswith("async-timeout") for _ in depends):
depends.append("async-timeout")

###########################
# compilers and run times #
###########################
Expand Down

0 comments on commit 077ed82

Please sign in to comment.