From 0e6b2039545ef6f5b7fbb135be360098b5cb66a5 Mon Sep 17 00:00:00 2001 From: Bobby Rullo Date: Wed, 13 Jun 2018 15:51:28 -0700 Subject: [PATCH] revert to what is on upsteram head --- setup.py | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/setup.py b/setup.py index a07ae74..a6abc45 100644 --- a/setup.py +++ b/setup.py @@ -23,11 +23,18 @@ setup( ], packages=find_packages(exclude=('tests*', 'testing*')), + # install_requires=[ + # # quickfix to prevent pycodestyle conflicts + # 'flake8==3.5.0', + # 'autopep8==1.3.5', + # 'pycodestyle==2.4.0', + # 'pyyaml', + # 'six', + # ], install_requires=[ # quickfix to prevent pycodestyle conflicts - 'flake8==3.5.0', - 'autopep8==1.3.5', - 'pycodestyle==2.4.0', + 'flake8!=2.5.3', + 'autopep8>=1.3', 'pyyaml', 'six', ],