diff options
author | andy <andy@whiskeymedia.com> | 2012-10-08 08:22:22 -0700 |
---|---|---|
committer | andy <andy@whiskeymedia.com> | 2012-10-08 08:22:22 -0700 |
commit | 76d516aa6e4a9e4a6e690d37dc577c6662d5ec87 (patch) | |
tree | 4b2a973e625dc6f936635efa0dc877db687a0448 | |
parent | 85be79cbea7074c70816bda32ad58d813ceb2e9a (diff) | |
download | redis-py-2.7.1.tar.gz |
2.7.1 version bump, include tests with source dist2.7.1
-rw-r--r-- | MANIFEST.in | 1 | ||||
-rw-r--r-- | redis/__init__.py | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/MANIFEST.in b/MANIFEST.in index 1b2fcd9..07876c2 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -2,3 +2,4 @@ include CHANGES include INSTALL include LICENSE include README.md +recursive-include tests * diff --git a/redis/__init__.py b/redis/__init__.py index 8bbdbb6..1255795 100644 --- a/redis/__init__.py +++ b/redis/__init__.py @@ -17,7 +17,7 @@ from redis.exceptions import ( ) -__version__ = '2.7.0' +__version__ = '2.7.1' VERSION = tuple(map(int, __version__.split('.'))) __all__ = [ |