Skip to content

Commit dc47675

Browse files
committed
Updating lib version to 7.1.0 and added note in README that Python 3.9 support is dropped.
1 parent f026c1e commit dc47675

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ The Python interface to the Redis key-value store.
1515

1616
**Note:** redis-py 5.0 is the last version of redis-py that supports Python 3.7, as it has reached [end of life](https://devguide.python.org/versions/). redis-py 5.1 supports Python 3.8+.<br>
1717
**Note:** redis-py 6.1.0 is the last version of redis-py that supports Python 3.8, as it has reached [end of life](https://devguide.python.org/versions/). redis-py 6.2.0 supports Python 3.9+.
18+
**Note:** redis-py 7.0.1 is the last version of redis-py that supports Python 3.9, as it has reached [end of life](https://devguide.python.org/versions/). redis-py 7.1.0 supports Python 3.10+.
1819

1920
---------------------------------------------
2021

redis/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ def int_or_str(value):
4646
return value
4747

4848

49-
__version__ = "7.0.1"
49+
__version__ = "7.1.0"
5050

5151
VERSION = tuple(map(int_or_str, __version__.split(".")))
5252

0 commit comments

Comments
 (0)