Skip to content

Commit 30075a4

Browse files
authored
Loosen the redis version requirement (#138)
The true versions are specified by Dockerfile, such as dockers/docker-config-engine-bullseye/Dockerfile.j2. It may use later versions, we do not want setup.py to install an older version in that case. See the PR #136
1 parent 53930b5 commit 30075a4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
from setuptools import setup
22

33
dependencies = [
4-
'redis==4.5.4;python_version >= "3.0"',
4+
'redis>=4.5.4;python_version >= "3.0"',
55
'redis>=3.5.3;python_version < "3.0"',
66
'redis-dump-load',
77
]

0 commit comments

Comments
 (0)