Skip to content

Commit ea5cc40

Browse files
committed
Enforce Python 3.6 and up only. Fixed #145.
1 parent 001fd6b commit ea5cc40

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

README.rst

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,9 @@ channels_redis
88
:target: https://pypi.python.org/pypi/channels_redis
99

1010
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).
1214

1315
**Note:** Prior versions of this package were called ``asgi_redis`` and are
1416
still available under PyPI as that name if you need them for Channels 1.x projects.

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
zip_safe=False,
3030
packages=find_packages(exclude=["tests"]),
3131
include_package_data=True,
32-
python_requires=">=3.5.2",
32+
python_requires=">=3.6",
3333
install_requires=[
3434
"aioredis~=1.0",
3535
"msgpack~=0.6.0",

0 commit comments

Comments
 (0)