Skip to content

Commit

Permalink
Pin Redis version to < 4.0.0 (#20430)
Browse files Browse the repository at this point in the history
<!-- Please add a reviewer to the assignee section when you create a PR. If you don't have the access to it, we will shortly find a reviewer and assign them to your PR. -->

## Why are these changes needed?

This pin is needed to fix `test_output` on master, which broke when 4.0.0 was released. 

It may also fix the windows build (unsure). 

## Related issue number

<!-- For example: "Closes #1234" -->

## Checks

- [ ] I've run `scripts/format.sh` to lint the changes in this PR.
- [ ] I've included any doc changes needed for https://docs.ray.io/en/master/.
- [ ] I've made sure the tests are passing. Note that there might be a few flaky tests, see the recent failures at https://flakey-tests.ray.io/
- Testing Strategy
   - [ ] Unit tests
   - [ ] Release tests
   - [ ] This PR is not tested :(
  • Loading branch information
simon-mo authored and Alex committed Nov 21, 2021
1 parent 7745ddf commit 117199c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion python/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ protobuf >= 3.8.0
py-spy >= 0.2.0
pydantic >= 1.8
pyyaml
redis >= 3.5.0
redis >= 3.5.0, < 4.0.0
requests

## setup.py extras
Expand Down
2 changes: 1 addition & 1 deletion python/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -264,7 +264,7 @@ def get_packages(self):
"numpy >= 1.19.3; python_version >= '3.9'",
"protobuf >= 3.15.3",
"pyyaml",
"redis >= 3.5.0",
"redis >= 3.5.0, < 4.0.0",
]


Expand Down

0 comments on commit 117199c

Please sign in to comment.