mirror of
https://github.com/PyCQA/flake8.git
synced 2026-04-12 07:44:16 +00:00
Fix #83 (bitbucket)
Tarek had explained to me how important adding specific pins were for versioning. I forgot to fix this prior to now.
This commit is contained in:
parent
4efd19ce09
commit
d29f822b10
1 changed files with 3 additions and 3 deletions
6
setup.py
6
setup.py
|
|
@ -31,9 +31,9 @@ setup(
|
||||||
url="http://bitbucket.org/tarek/flake8",
|
url="http://bitbucket.org/tarek/flake8",
|
||||||
packages=["flake8", "flake8.tests"],
|
packages=["flake8", "flake8.tests"],
|
||||||
install_requires=[
|
install_requires=[
|
||||||
"pyflakes >= 0.6.1",
|
"pyflakes == 0.6.1",
|
||||||
"pep8 >= 1.4.3",
|
"pep8 == 1.4.5",
|
||||||
"mccabe >= 0.2",
|
"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