File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 77# You can obtain this list from the ray.egg-info/requires.txt
88
99## setup.py install_requires
10- # Click 8.3.0 does not work with copy.deepcopy on Python 3.10
10+ # Click 8.3.* does not work with copy.deepcopy on Python 3.10
1111# TODO(aslonnie): https://github.com/ray-project/ray/issues/56747
12- click >= 7.0 , != 8.3.0
12+ click >= 7.0 , != 8.3.*
1313cupy-cuda12x ; sys_platform != 'darwin'
1414filelock
1515jsonschema
Original file line number Diff line number Diff line change @@ -402,9 +402,9 @@ def get_packages(self):
402402# new releases candidates.
403403if setup_spec .type == SetupType .RAY :
404404 setup_spec .install_requires = [
405- # Click 8.3.0 does not work with copy.deepcopy on Python 3.10
405+ # Click 8.3.* does not work with copy.deepcopy on Python 3.10
406406 # TODO(aslonnie): https://github.com/ray-project/ray/issues/56747
407- "click>=7.0, !=8.3.0 " ,
407+ "click>=7.0, !=8.3.* " ,
408408 "filelock" ,
409409 "jsonschema" ,
410410 "msgpack >= 1.0.0, < 2.0.0" ,
You can’t perform that action at this time.
0 commit comments