From 018d8da0b947865d8217b459197bcc4f13e04666 Mon Sep 17 00:00:00 2001 From: David Brochart Date: Wed, 7 Apr 2021 15:14:10 +0200 Subject: [PATCH] Pin python>=3.6.1 --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 47280225d..6a5d6d43e 100644 --- a/setup.py +++ b/setup.py @@ -63,10 +63,10 @@ def run(self): 'Operating System :: OS Independent', 'Programming Language :: Python', 'Programming Language :: Python :: 3', - 'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.6', 'Programming Language :: Python :: 3.7', 'Programming Language :: Python :: 3.8', + 'Programming Language :: Python :: 3.9', ], install_requires=[ 'traitlets', @@ -76,7 +76,7 @@ def run(self): 'tornado>=4.1', 'nest-asyncio>=1.5', ], - python_requires='>=3.5', + python_requires='>=3.6.1', extras_require={ 'test': [ 'async_generator',