Skip to content

Commit

Permalink
[CI] Pin aiohttp version to fix master branch (ray-project#19948)
Browse files Browse the repository at this point in the history
  • Loading branch information
simon-mo authored Nov 2, 2021
1 parent da68948 commit 6040319
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion ci/asan_tests/ray-project/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
aiohttp
aiohttp==3.7
blist
boto3
cython==0.29.0
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 grpcio pytest==5.4.3 requests
"$PIP_CMD" install -q aiohttp==3.7 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 grpcio pytest==5.4.3 requests
"$PIP_CMD" install -q aiohttp==3.7 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
2 changes: 1 addition & 1 deletion python/requirements/requirements_default.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
aiohttp>=3.7
aiohttp==3.7
aiohttp_cors
aioredis<2
colorful
Expand Down
2 changes: 1 addition & 1 deletion python/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ def get_packages(self):
"fsspec",
],
"default": [
"aiohttp >= 3.7",
"aiohttp == 3.7",
"aiohttp_cors",
"aioredis < 2",
"colorful",
Expand Down

0 comments on commit 6040319

Please sign in to comment.