Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

redis-dump-load: Pin the redis package to use 3.5.3 #9001

Merged
merged 1 commit into from
Oct 19, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 25 additions & 0 deletions src/redis-dump-load.patch/0003-use-redis-3.5.3.patch
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
Pin the redis package to version 3.5.3 (the last version that supports both
Python 2 and 3).

Signed-off-by: Saikrishna Arcot <[email protected]>

diff --git a/requirements.txt b/requirements.txt
index 7800f0f..3fc0632 100644
--- a/requirements.txt
+++ b/requirements.txt
@@ -1 +1 @@
-redis
+redis==3.5.3
diff --git a/setup.py b/setup.py
index 8ccf31f..6db9ec4 100644
--- a/setup.py
+++ b/setup.py
@@ -17,7 +17,7 @@ setup(name=package_name,
author_email='[email protected]',
url='http://github.com/p/redis-dump-load',
py_modules=['redisdl'],
- install_requires=['redis'],
+ install_requires=['redis==3.5.3'],
data_files=[
(doc_dir, data_files),
],
1 change: 1 addition & 0 deletions src/redis-dump-load.patch/series
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
0001-Use-pipelines-when-dumping-52.patch
0002-Fix-setup.py-for-test-and-bdist_wheel.patch
0003-use-redis-3.5.3.patch