From 8b873e2bd6e4fbbf0464380cd799c9513b26386c Mon Sep 17 00:00:00 2001 From: Artem Malyshev Date: Tue, 18 Jul 2017 08:23:34 -0400 Subject: [PATCH] Use correct environment markers syntax in the extras_require section. See https://github.com/pypa/setuptools/issues/1087 --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index e8f4159..d5bbf18 100644 --- a/setup.py +++ b/setup.py @@ -19,10 +19,10 @@ setup( extras_require={ 'tests': [ 'coverage', - 'mock ; python_version < "3.0"', 'flake8>=2.0,<3.0', 'isort', ], + 'tests:python_version < "3.0"': ['mock'], }, classifiers=[ 'Development Status :: 5 - Production/Stable',