summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChayim <chayim@users.noreply.github.com>2023-03-16 14:13:43 +0200
committerGitHub <noreply@github.com>2023-03-16 14:13:43 +0200
commitc61eeb2e3b5dff1f01eb1e665f424c7e75354f56 (patch)
tree3d53fc9027788ebf53aa96b5128f381ee1be8c2a
parent25e85e51e57b7aae9eb8fc77cfb0a45a07a501a7 (diff)
downloadredis-py-c61eeb2e3b5dff1f01eb1e665f424c7e75354f56.tar.gz
Adding supported redis/library details (#2621)
-rw-r--r--README.md18
1 files changed, 12 insertions, 6 deletions
diff --git a/README.md b/README.md
index 6b53b42..e97119a 100644
--- a/README.md
+++ b/README.md
@@ -13,12 +13,6 @@ The Python interface to the Redis key-value store.
---------------------------------------------
-## Python Notice
-
-redis-py 4.3.x will be the last generation of redis-py to support python 3.6 as it has been [End of Life'd](https://www.python.org/dev/peps/pep-0494/#schedule-last-security-only-release). Async support was introduced in redis-py 4.2.x thanks to [aioredis](https://github.com/aio-libs/aioredis-py), which necessitates this change. We will continue to maintain 3.6 support as long as possible - but the plan is for redis-py version 4.4+ to officially remove 3.6.
-
----------------------------
-
## Installation
Start a redis via docker:
@@ -42,6 +36,18 @@ $ pip install "redis[hiredis]"
Looking for a high-level library to handle object mapping? See [redis-om-python](https://github.com/redis/redis-om-python)!
+## Supported Redis Versions
+
+The most recent version of this library supports redis version [5.0](https://github.com/redis/redis/blob/5.0/00-RELEASENOTES), [6.0](https://github.com/redis/redis/blob/6.0/00-RELEASENOTES), [6.2](https://github.com/redis/redis/blob/6.2/00-RELEASENOTES), and [7.0](https://github.com/redis/redis/blob/7.0/00-RELEASENOTES).
+
+The table below higlights version compatibility of the most-recent library versions and redis versions.
+
+| Library version | Supported redis versions |
+|-----------------|-------------------|
+| 3.5.3 | <= 6.2 Family of releases |
+| >= 4.1.0 | Version 5.0 to current |
+
+
## Usage
### Basic Example