Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix aiohttp 3.8.0 breaking changes (and unpin from 3.7) #20261

Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
➕ Add Python dependency: frozenlist
  • Loading branch information
TeoZosa committed Nov 11, 2021
commit 779cc4ba4e091908fbf841be6cc6e12cbef6bd00
1 change: 1 addition & 0 deletions ci/asan_tests/ray-project/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ dataclasses; python_version < '3.7'
dm-tree==0.1.5
feather-format
flask
frozenlist
grpcio
gym
kubernetes
Expand Down
4 changes: 2 additions & 2 deletions ci/travis/test-wheels.sh
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ if [[ "$platform" == "linux" ]]; then
"$PYTHON_EXE" -u -c "import ray; print(ray.__commit__)" | grep "$TRAVIS_COMMIT" || (echo "ray.__commit__ not set properly!" && exit 1)

# Install the dependencies to run the tests.
"$PIP_CMD" install -q aiohttp==3.7 aiosignal grpcio pytest==5.4.3 requests
"$PIP_CMD" install -q aiohttp==3.7 aiosignal frozenlist grpcio pytest==5.4.3 requests

# Run a simple test script to make sure that the wheel works.
for SCRIPT in "${TEST_SCRIPTS[@]}"; do
Expand Down Expand Up @@ -117,7 +117,7 @@ elif [[ "$platform" == "macosx" ]]; then
"$PIP_CMD" install -q "$PYTHON_WHEEL"

# Install the dependencies to run the tests.
"$PIP_CMD" install -q aiohttp==3.7 aiosignal grpcio pytest==5.4.3 requests
"$PIP_CMD" install -q aiohttp==3.7 aiosignal frozenlist grpcio pytest==5.4.3 requests

# Run a simple test script to make sure that the wheel works.
for SCRIPT in "${TEST_SCRIPTS[@]}"; do
Expand Down
1 change: 1 addition & 0 deletions python/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ aiosignal
click >= 7.0
cloudpickle
filelock
frozenlist
gpustat >= 1.0.0b1
grpcio >= 1.28.1
jsonschema
Expand Down
1 change: 1 addition & 0 deletions python/requirements/requirements_default.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,6 @@ aiosignal
aiohttp_cors
aioredis<2
colorful
frozenlist
opencensus
prometheus_client>=0.7.1
1 change: 1 addition & 0 deletions python/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -203,6 +203,7 @@ def get_packages(self):
"aiohttp_cors",
"aioredis < 2",
"colorful",
"frozenlist",
"py-spy >= 0.2.0",
"requests",
"gpustat >= 1.0.0b1", # for windows
Expand Down