Skip to content

Commit bf60629

Browse files
authored
Merge pull request #113 from pusher/require_3_5_for_aiohttp
Require Python 3.5.3 for aiohttp
2 parents f1735cc + 69976dc commit bf60629

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ In order to use this library, you need to have a free account on <http://pusher.
1111
## Features
1212

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

pusher_tests/test_aiohttp_adapter.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
import sys
22

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

0 commit comments

Comments
 (0)