From 01e2c4632f469b4567e47712add0bfaaceaa2830 Mon Sep 17 00:00:00 2001 From: Grokzen Date: Fri, 16 Nov 2018 15:51:20 +0100 Subject: [PATCH] Pin redis-py version to 2.10.6. Update version to 1.3.6 and add note to release notes --- docs/release-notes.rst | 8 +++++++- rediscluster/__init__.py | 2 +- requirements.txt | 2 +- setup.py | 4 ++-- 4 files changed, 11 insertions(+), 5 deletions(-) diff --git a/docs/release-notes.rst b/docs/release-notes.rst index 6d40994b..e0c89498 100644 --- a/docs/release-notes.rst +++ b/docs/release-notes.rst @@ -1,8 +1,14 @@ Release Notes ============= +1.3.6 (Nov 16, 2018) +-------------------- + + * Pin upstream redis-py package to release 2.10.6 to avoid issues with incompatible version 3.0.0 + + 1.3.5 (July 22, 2018) --------------- +--------------------- * Add Redis 4 compatability fix to CLUSTER NODES command (See issue #217) * Fixed bug with command "CLUSTER GETKEYSINSLOT" that was throwing exceptions diff --git a/rediscluster/__init__.py b/rediscluster/__init__.py index 7bf3c76e..cb3d40f0 100644 --- a/rediscluster/__init__.py +++ b/rediscluster/__init__.py @@ -16,7 +16,7 @@ setattr(redis, "StrictClusterPipeline", StrictClusterPipeline) # Major, Minor, Fix version -__version__ = (1, 3, 5) +__version__ = (1, 3, 6) if sys.version_info[0:3] == (3, 4, 0): raise RuntimeError("CRITICAL: rediscluster do not work with python 3.4.0. Please use 3.4.1 or higher.") diff --git a/requirements.txt b/requirements.txt index 345a0b84..91015469 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1 +1 @@ -redis>=2.10.6 +redis==2.10.6 diff --git a/setup.py b/setup.py index 67ec1e93..641674c3 100644 --- a/setup.py +++ b/setup.py @@ -20,7 +20,7 @@ setup( name="redis-py-cluster", - version="1.3.5", + version="1.3.6", description="Library for communicating with Redis Clusters. Built on top of redis-py lib", long_description=readme + '\n\n' + history, author="Johan Andersson", @@ -31,7 +31,7 @@ url='http://github.com/grokzen/redis-py-cluster', license='MIT', install_requires=[ - 'redis>=2.10.6' + 'redis==2.10.6' ], keywords=[ 'redis',