Skip to content

Commit

Permalink
[Core] Remove attrs dependency (ray-project#36270)
Browse files Browse the repository at this point in the history
Turns out this is actually not used any more, so can be removed.
  • Loading branch information
pcmoritz committed Jun 9, 2023
1 parent c1c466a commit 4c456ec
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 3 deletions.
2 changes: 1 addition & 1 deletion ci/env/install-core-prerelease-dependencies.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ set -e
# install all unbounded dependencies in setup.py for ray core
# TOOD(scv119) reenable grpcio once https://github.com/grpc/grpc/issues/31885 is fixed.
# TOOD(scv119) reenable jsonschema once https://github.com/ray-project/ray/issues/33411 is fixed.
for dependency in attrs aiosignal frozenlist requests protobuf
for dependency in aiosignal frozenlist requests protobuf
do
python -m pip install -U --pre --upgrade-strategy=eager $dependency
done
1 change: 0 additions & 1 deletion python/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
# You can obtain this list from the ray.egg-info/requires.txt

## setup.py install_requires
attrs
click>=7.0
filelock
# Tracking issue: https://github.com/ray-project/ray/issues/33411
Expand Down
1 change: 0 additions & 1 deletion python/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -316,7 +316,6 @@ def get_packages(self):
# new releases candidates.
if setup_spec.type == SetupType.RAY:
setup_spec.install_requires = [
"attrs",
"click >= 7.0",
"filelock",
"grpcio >= 1.32.0; python_version < '3.10'", # noqa:E501
Expand Down

0 comments on commit 4c456ec

Please sign in to comment.