From 362601ebcd4d2f989a2296a03aa807dabb4d9b76 Mon Sep 17 00:00:00 2001 From: nibrag Date: Tue, 10 May 2016 03:40:34 +0300 Subject: [PATCH] Change minimal python version --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 134c2d5..4d4e414 100644 --- a/setup.py +++ b/setup.py @@ -19,7 +19,7 @@ with codecs.open(os.path.join(os.path.abspath(os.path.dirname( raise RuntimeError('Unable to determine version.') -if sys.version_info < (3, 5, 1): +if sys.version_info < (3, 4, 0): raise RuntimeError("aiosocks requires Python 3.5.1+")