mirror of
https://github.com/PyCQA/flake8.git
synced 2026-03-30 02:46:52 +00:00
Handle sdist installation without tox
This commit is contained in:
parent
df0a799c94
commit
f54c0874f8
2 changed files with 3 additions and 1 deletions
3
setup.py
3
setup.py
|
|
@ -37,6 +37,9 @@ requires = [
|
|||
if sys.version_info < (3, 4):
|
||||
requires.append("enum34")
|
||||
|
||||
if sys.version_info < (3, 2):
|
||||
requires.append("configparser")
|
||||
|
||||
|
||||
def get_long_description():
|
||||
"""Generate a long description from the README and CHANGES files."""
|
||||
|
|
|
|||
1
tox.ini
1
tox.ini
|
|
@ -6,7 +6,6 @@ envlist = py27,py33,py34,py35,flake8
|
|||
deps =
|
||||
mock
|
||||
pytest
|
||||
pypy,py27: configparser
|
||||
commands =
|
||||
py.test {posargs}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue