Skip to content

Commit c446399

Browse files
authored
[scripts] ban click 8.3.* (#58677)
it uses `enum.Enum` that are not deepcopy-able Signed-off-by: Lonnie Liu <lonnie@anyscale.com>
1 parent 4a930fe commit c446399

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

python/requirements.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@
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.*
1313
cupy-cuda12x; sys_platform != 'darwin'
1414
filelock
1515
jsonschema

python/setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -402,9 +402,9 @@ def get_packages(self):
402402
# new releases candidates.
403403
if 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",

0 commit comments

Comments
 (0)