File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -8,7 +8,9 @@ channels_redis
8
8
:target: https://pypi.python.org/pypi/channels_redis
9
9
10
10
A Django Channels channel layer that uses Redis as its backing store, and supports
11
- both a single-server and sharded configurations, as well as group support.
11
+ both a single-server and sharded configurations, as well as group support. Requires
12
+ Python 3.6 or higher to function correctly (3.5 will look like it works, but have
13
+ random errors).
12
14
13
15
**Note: ** Prior versions of this package were called ``asgi_redis `` and are
14
16
still available under PyPI as that name if you need them for Channels 1.x projects.
Original file line number Diff line number Diff line change 29
29
zip_safe = False ,
30
30
packages = find_packages (exclude = ["tests" ]),
31
31
include_package_data = True ,
32
- python_requires = ">=3.5.2 " ,
32
+ python_requires = ">=3.6 " ,
33
33
install_requires = [
34
34
"aioredis~=1.0" ,
35
35
"msgpack~=0.6.0" ,
You can’t perform that action at this time.
0 commit comments