From 69976dc608e2ebc4a830708f3a0511299af4d5df Mon Sep 17 00:00:00 2001 From: Will Sewell Date: Thu, 3 May 2018 11:08:20 +0100 Subject: [PATCH] Require Python 3.5.3 for aiohttp --- README.md | 2 +- pusher_tests/test_aiohttp_adapter.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index fb52ee8..f451e38 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,7 @@ In order to use this library, you need to have a free account on = 3.5.3) and tornado. * WebHook validation * Signature generation for socket subscriptions diff --git a/pusher_tests/test_aiohttp_adapter.py b/pusher_tests/test_aiohttp_adapter.py index 72b1121..8b44a65 100644 --- a/pusher_tests/test_aiohttp_adapter.py +++ b/pusher_tests/test_aiohttp_adapter.py @@ -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 *