summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIan Cordasco <graffatcolmingov@gmail.com>2013-03-24 16:33:48 -0400
committerIan Cordasco <graffatcolmingov@gmail.com>2013-03-24 16:33:48 -0400
commitd29f822b10221aedb55fdb53089f8b5deed16396 (patch)
treec37fa4c650cfda1b82e260a22fffb3b8cb6151f4
parent4efd19ce093fd7875bfd8f14dce2c584bc06cd30 (diff)
downloadflake8-d29f822b10221aedb55fdb53089f8b5deed16396.tar.gz
Fix #83 (bitbucket)
Tarek had explained to me how important adding specific pins were for versioning. I forgot to fix this prior to now.
-rw-r--r--setup.py6
1 files 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'],