mirror of
https://github.com/PyCQA/flake8.git
synced 2026-04-14 00:14:46 +00:00
Upgrade requirements to pep8 1.4.3 and mccabe 0.2
This commit is contained in:
parent
b2b4590ba6
commit
467b9f5c29
2 changed files with 8 additions and 4 deletions
|
|
@ -1,7 +1,7 @@
|
||||||
CHANGES
|
CHANGES
|
||||||
=======
|
=======
|
||||||
|
|
||||||
2.0.0 - 2013-01-xx
|
2.0.0 - 2013-02-xx
|
||||||
------------------
|
------------------
|
||||||
|
|
||||||
- Fixes #13: pep8 and pyflakes are now external dependencies
|
- Fixes #13: pep8 and pyflakes are now external dependencies
|
||||||
|
|
@ -10,6 +10,7 @@ CHANGES
|
||||||
- New feature: Install git and hg hooks automagically
|
- New feature: Install git and hg hooks automagically
|
||||||
- By relying on pyflakes (0.6.1), we also fixed #45 and #35
|
- By relying on pyflakes (0.6.1), we also fixed #45 and #35
|
||||||
|
|
||||||
|
|
||||||
1.7.0 - 2012-12-21
|
1.7.0 - 2012-12-21
|
||||||
------------------
|
------------------
|
||||||
|
|
||||||
|
|
@ -20,6 +21,7 @@ CHANGES
|
||||||
- Fix the git hook
|
- Fix the git hook
|
||||||
- Update pep8.py to the latest version
|
- Update pep8.py to the latest version
|
||||||
|
|
||||||
|
|
||||||
1.6.2 - 2012-11-25
|
1.6.2 - 2012-11-25
|
||||||
------------------
|
------------------
|
||||||
|
|
||||||
|
|
@ -34,6 +36,7 @@ CHANGES
|
||||||
- fixed an assumption about warnings/error messages that caused an exception
|
- fixed an assumption about warnings/error messages that caused an exception
|
||||||
to be thrown when McCabe is used
|
to be thrown when McCabe is used
|
||||||
|
|
||||||
|
|
||||||
1.6 - 2012-11-16
|
1.6 - 2012-11-16
|
||||||
----------------
|
----------------
|
||||||
|
|
||||||
|
|
@ -50,7 +53,6 @@ CHANGES
|
||||||
- fixed crash on non-existant file (#38)
|
- fixed crash on non-existant file (#38)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
1.5 - 2012-10-13
|
1.5 - 2012-10-13
|
||||||
----------------
|
----------------
|
||||||
|
|
||||||
|
|
@ -98,6 +100,7 @@ CHANGES
|
||||||
- allow three argument form of raise
|
- allow three argument form of raise
|
||||||
- now uses setuptools if available, for 'develop' command
|
- now uses setuptools if available, for 'develop' command
|
||||||
|
|
||||||
|
|
||||||
1.0 - 2011-11-29
|
1.0 - 2011-11-29
|
||||||
----------------
|
----------------
|
||||||
|
|
||||||
|
|
@ -111,6 +114,7 @@ CHANGES
|
||||||
- update pep8 version to 0.6.1
|
- update pep8 version to 0.6.1
|
||||||
- mccabe check: gracefully handle compile failure
|
- mccabe check: gracefully handle compile failure
|
||||||
|
|
||||||
|
|
||||||
0.8 - 2011-02-27
|
0.8 - 2011-02-27
|
||||||
----------------
|
----------------
|
||||||
|
|
||||||
|
|
|
||||||
4
setup.py
4
setup.py
|
|
@ -33,8 +33,8 @@ setup(
|
||||||
install_requires=[
|
install_requires=[
|
||||||
"setuptools",
|
"setuptools",
|
||||||
"pyflakes >= 0.6.1",
|
"pyflakes >= 0.6.1",
|
||||||
"pep8 >= 1.4.2",
|
"pep8 >= 1.4.3",
|
||||||
"mccabe >= 0.2a0",
|
"mccabe >= 0.2",
|
||||||
],
|
],
|
||||||
entry_points={
|
entry_points={
|
||||||
'distutils.commands': ['flake8 = flake8.main:Flake8Command'],
|
'distutils.commands': ['flake8 = flake8.main:Flake8Command'],
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue