From 1448b32cd0dba1e866d1a2c0702f1d3f987f719c Mon Sep 17 00:00:00 2001 From: Claudiu Popa Date: Fri, 22 Feb 2019 09:22:43 +0100 Subject: pylint 1.9.X cannot be installed on Python 3.7 so make this explicit --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 7ca1d38f4..91db8d680 100644 --- a/setup.py +++ b/setup.py @@ -169,7 +169,7 @@ def install(**kwargs): cmdclass=cmdclass, extras_require=extras_require, test_suite='test', - python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*', + python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, <3.7', setup_requires=['pytest-runner'], tests_require=['pytest'], **kwargs) -- cgit v1.2.1