From d29f822b10221aedb55fdb53089f8b5deed16396 Mon Sep 17 00:00:00 2001 From: Ian Cordasco Date: Sun, 24 Mar 2013 16:33:48 -0400 Subject: [PATCH] Fix #83 (bitbucket) Tarek had explained to me how important adding specific pins were for versioning. I forgot to fix this prior to now. --- setup.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/setup.py b/setup.py index e189283..d7c7601 100644 --- a/setup.py +++ b/setup.py @@ -31,9 +31,9 @@ setup( url="http://bitbucket.org/tarek/flake8", packages=["flake8", "flake8.tests"], install_requires=[ - "pyflakes >= 0.6.1", - "pep8 >= 1.4.3", - "mccabe >= 0.2", + "pyflakes == 0.6.1", + "pep8 == 1.4.5", + "mccabe == 0.2", ], entry_points={ 'distutils.commands': ['flake8 = flake8.main:Flake8Command'],