Skip to content

Commit

Permalink
Require Python 3.5.3 for aiohttp
Browse files Browse the repository at this point in the history
  • Loading branch information
WillSewell committed May 3, 2018
1 parent f1735cc commit 69976dc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
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 *

0 comments on commit 69976dc

Please sign in to comment.