Restrict redis version. (#3733) (#3737)

(cherry picked from commit bf7a954f00)
This commit is contained in:
Felix Fontein 2021-11-16 07:31:15 +01:00 committed by GitHub
commit d4ddbed566
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 6 additions and 1 deletions

View file

@ -44,6 +44,9 @@ botocore >= 1.10.0 ; python_version >= '2.7' # adds support for the following AW
setuptools < 45 ; python_version <= '2.7' # setuptools 45 and later require python 3.5 or later
cffi >= 1.14.2, != 1.14.3 # Yanked version which older versions of pip will still install:
ruamel.yaml.clib <= 0.2.2 ; python_version <= '2.7' # 0.2.4 require python 3.5 or later, 0.2.3 is yanked
redis == 2.10.6 ; python_version < '2.7'
redis < 4.0.0 ; python_version >= '2.7' and python_version < '3.6'
redis ; python_version >= '3.6'
# freeze pylint and its requirements for consistent test results
astroid == 2.2.5