Skip to content
This repository has been archived by the owner on Jan 9, 2024. It is now read-only.

Commit

Permalink
Pin redis-py version to 2.10.6. Update version to 1.3.6 and add note …
Browse files Browse the repository at this point in the history
…to release notes
  • Loading branch information
Grokzen committed Nov 16, 2018
1 parent 813b934 commit 01e2c46
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 5 deletions.
8 changes: 7 additions & 1 deletion docs/release-notes.rst
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion rediscluster/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.")
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
redis>=2.10.6
redis==2.10.6
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand All @@ -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',
Expand Down

0 comments on commit 01e2c46

Please sign in to comment.