Upgrade requirements to pep8 1.4.3 and mccabe 0.2

This commit is contained in:
Florent Xicluna 2013-02-22 08:30:37 +01:00
parent b2b4590ba6
commit 467b9f5c29
2 changed files with 8 additions and 4 deletions

View file

@ -1,7 +1,7 @@
CHANGES
=======
2.0.0 - 2013-01-xx
2.0.0 - 2013-02-xx
------------------
- Fixes #13: pep8 and pyflakes are now external dependencies
@ -10,6 +10,7 @@ CHANGES
- New feature: Install git and hg hooks automagically
- By relying on pyflakes (0.6.1), we also fixed #45 and #35
1.7.0 - 2012-12-21
------------------
@ -20,6 +21,7 @@ CHANGES
- Fix the git hook
- Update pep8.py to the latest version
1.6.2 - 2012-11-25
------------------
@ -34,6 +36,7 @@ CHANGES
- fixed an assumption about warnings/error messages that caused an exception
to be thrown when McCabe is used
1.6 - 2012-11-16
----------------
@ -50,7 +53,6 @@ CHANGES
- fixed crash on non-existant file (#38)
1.5 - 2012-10-13
----------------
@ -98,6 +100,7 @@ CHANGES
- allow three argument form of raise
- now uses setuptools if available, for 'develop' command
1.0 - 2011-11-29
----------------
@ -111,6 +114,7 @@ CHANGES
- update pep8 version to 0.6.1
- mccabe check: gracefully handle compile failure
0.8 - 2011-02-27
----------------

View file

@ -33,8 +33,8 @@ setup(
install_requires=[
"setuptools",
"pyflakes >= 0.6.1",
"pep8 >= 1.4.2",
"mccabe >= 0.2a0",
"pep8 >= 1.4.3",
"mccabe >= 0.2",
],
entry_points={
'distutils.commands': ['flake8 = flake8.main:Flake8Command'],