Commit 6d05d15c authored by Sean Bleier's avatar Sean Bleier

Updates required version of redis-py

parent 8b074765
......@@ -25,11 +25,13 @@ Changelog
* Deprecate support for Python 2.6. The cache should still work, but tests
will fail and compatibility will not be guaranteed going forward.
Backward incompatibilities:
**Backward incompatibilities:**
The ``HashRing`` behavior has changed to maintain a proper keyspace balance.
* The ``HashRing`` behavior has changed to maintain a proper keyspace balance.
This will lead to some cache misses, so be aware.
* Now requires `redis-py`_ >= 2.10.3
1.0.0
-----
......@@ -92,10 +94,10 @@ control and the option to roll your own parser class if you are so bold.
Requirements
============
`redis-py`_ >= 2.4.5
`redis-py`_ >= 2.10.3
`redis`_ >= 2.4
`hiredis`_
`python`_ >= 2.5
`python`_ >= 2.7
1. Run ``pip install django-redis-cache``.
......
......@@ -8,7 +8,7 @@ setup(
version="1.2.0",
packages=["redis_cache", "redis_cache.backends"],
description="Redis Cache Backend for Django",
install_requires=['redis>=2.4.5'],
install_requires=['redis>=2.10.3'],
classifiers=[
"Programming Language :: Python",
"Programming Language :: Python :: 2.6",
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment