summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChayim <chayim@users.noreply.github.com>2021-11-17 11:54:45 +0200
committerGitHub <noreply@github.com>2021-11-17 11:54:45 +0200
commite74ed1942a746683ece792cb1670c544f599246f (patch)
tree40bbb5e21714cc062c00b0ca331d1ba4b99eb3e6
parentc02d7209be5aeefe27c7ac2e740dafc4d969ec47 (diff)
downloadredis-py-e74ed1942a746683ece792cb1670c544f599246f.tar.gz
removing hiredis warning (#1721)
-rw-r--r--redis/__init__.py2
-rwxr-xr-xredis/connection.py5
2 files changed, 1 insertions, 6 deletions
diff --git a/redis/__init__.py b/redis/__init__.py
index 5d63543..480ffd8 100644
--- a/redis/__init__.py
+++ b/redis/__init__.py
@@ -37,7 +37,7 @@ def int_or_str(value):
return value
-__version__ = "4.0.0"
+__version__ = "4.0.1"
VERSION = tuple(map(int_or_str, __version__.split('.')))
diff --git a/redis/connection.py b/redis/connection.py
index cb9acb4..35e9491 100755
--- a/redis/connection.py
+++ b/redis/connection.py
@@ -63,11 +63,6 @@ if HIREDIS_AVAILABLE:
HIREDIS_SUPPORTS_ENCODING_ERRORS = \
hiredis_version >= LooseVersion('1.0.0')
- if not HIREDIS_SUPPORTS_BYTE_BUFFER:
- msg = ("redis-py works best with hiredis >= 0.1.4. You're running "
- "hiredis %s. Please consider upgrading." % hiredis.__version__)
- warnings.warn(msg)
-
HIREDIS_USE_BYTE_BUFFER = True
# only use byte buffer if hiredis supports it
if not HIREDIS_SUPPORTS_BYTE_BUFFER: