Skip to content

Commit e35ca37

Browse files
committed
Updated hiredis version dependency
1 parent 2825612 commit e35ca37

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/integration.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ jobs:
8080
pip install -r requirements.txt
8181
pip install -r dev_requirements.txt
8282
if [ "${{matrix.connection-type}}" == "hiredis" ]; then
83-
pip install hiredis
83+
pip install "hiredis>=2.0.0,<3.0.0"
8484
fi
8585
invoke devenv
8686
sleep 10 # time to settle
@@ -136,7 +136,7 @@ jobs:
136136
pip install -r requirements.txt
137137
pip install -r dev_requirements.txt
138138
if [ "${{matrix.connection-type}}" == "hiredis" ]; then
139-
pip install hiredis
139+
pip install "hiredis>=2.0.0,<3.0.0"
140140
fi
141141
invoke devenv
142142
sleep 10 # time to settle

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@
5858
"Programming Language :: Python :: Implementation :: PyPy",
5959
],
6060
extras_require={
61-
"hiredis": ["hiredis~=2.0"],
61+
"hiredis": ["hiredis>1.0.0"],
6262
"ocsp": ["cryptography>=36.0.1", "pyopenssl==20.0.1", "requests>=2.26.0"],
6363
},
6464
)

0 commit comments

Comments
 (0)