Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ In order to use this library, you need to have a free account on <http://pusher.
## Features

* Python 2.7, 3.4, 3.5 and 3.6 support
* Adapters for various http libraries like requests, urlfetch, aiohttp and tornado.
* Adapters for various http libraries like requests, urlfetch, aiohttp (requires Python >= 3.5.3) and tornado.
* WebHook validation
* Signature generation for socket subscriptions

Expand Down
2 changes: 1 addition & 1 deletion pusher_tests/test_aiohttp_adapter.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import sys

if sys.version_info >= (3,3):
if sys.version_info >= (3,5,3):
from .aio.aiohttp_adapter_test import *