We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c02d720 commit e74ed19Copy full SHA for e74ed19
redis/__init__.py
@@ -37,7 +37,7 @@ def int_or_str(value):
37
return value
38
39
40
-__version__ = "4.0.0"
+__version__ = "4.0.1"
41
42
43
VERSION = tuple(map(int_or_str, __version__.split('.')))
redis/connection.py
@@ -63,11 +63,6 @@
63
HIREDIS_SUPPORTS_ENCODING_ERRORS = \
64
hiredis_version >= LooseVersion('1.0.0')
65
66
- if not HIREDIS_SUPPORTS_BYTE_BUFFER:
67
- msg = ("redis-py works best with hiredis >= 0.1.4. You're running "
68
- "hiredis %s. Please consider upgrading." % hiredis.__version__)
69
- warnings.warn(msg)
70
-
71
HIREDIS_USE_BYTE_BUFFER = True
72
# only use byte buffer if hiredis supports it
73
if not HIREDIS_SUPPORTS_BYTE_BUFFER:
0 commit comments