diff options
author | Andy McCurdy <andy@andymccurdy.com> | 2019-08-06 10:59:38 -0700 |
---|---|---|
committer | Andy McCurdy <andy@andymccurdy.com> | 2019-08-06 10:59:38 -0700 |
commit | 038e5ee019ecaa29b073a89e61585d404579beff (patch) | |
tree | 60aa92db2980aa10d8f5019dff046d332c663daa /redis/__init__.py | |
parent | a5ba696ed8aa3efbc709de4046a121a82a31392f (diff) | |
download | redis-py-038e5ee019ecaa29b073a89e61585d404579beff.tar.gz |
version 3.3.6, fixed a regression in 3.3.5 with pubsub timeouts3.3.6
Fixes #1200
Diffstat (limited to 'redis/__init__.py')
-rw-r--r-- | redis/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/redis/__init__.py b/redis/__init__.py index 66ef979..6200d4d 100644 --- a/redis/__init__.py +++ b/redis/__init__.py @@ -29,7 +29,7 @@ def int_or_str(value): return value -__version__ = '3.3.5' +__version__ = '3.3.6' VERSION = tuple(map(int_or_str, __version__.split('.'))) __all__ = [ |