Skip to content

Commit

Permalink
Update to Ray 2 and relax the other dependency versions (#2713)
Browse files Browse the repository at this point in the history
  • Loading branch information
bryant1410 authored Feb 15, 2024
1 parent 6ff79b1 commit d6df211
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 6 deletions.
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# Copyright (c) Facebook, Inc. and its affiliates. All Rights Reserved

__version__ = "1.2.0"
__version__ = "1.2.1"
12 changes: 7 additions & 5 deletions plugins/hydra_ray_launcher/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,16 +20,18 @@
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Operating System :: MacOS",
"Operating System :: POSIX :: Linux",
],
install_requires=[
"boto3==1.22.6",
"boto3",
"hydra-core>=1.1.2",
"ray[default]~=1.12",
"aiohttp==3.8.1",
"cloudpickle==2.0.0",
"pickle5==0.0.11; python_version < '3.8'",
"ray[default]<3",
"aiohttp<4",
"cloudpickle<3",
"pickle5==0.0.12; python_version < '3.8'",
],
include_package_data=True,
)

0 comments on commit d6df211

Please sign in to comment.