fix: remove --min-version

This commit is contained in:
Jef LeCompte 2020-06-04 01:21:46 -04:00
parent e66cfd58ad
commit 26caef544f
No known key found for this signature in database
GPG key ID: 9FFEF859EB0452E5

12
tox.ini
View file

@ -46,12 +46,12 @@ commands =
py27-test: python -m nose {posargs}
py3{4,5,6,7,8}-cov: python -bb -m nose --with-coverage {posargs}
py3{4,5,6,7,8}-test: python -bb -m nose {posargs}
py27-flake8: flake8 --min-version 2.7 {posargs} {[_flake8]files}
py34-flake8: flake8 --min-version 3.4 {posargs} {[_flake8]files}
py35-flake8: flake8 --min-version 3.5 {posargs} {[_flake8]files}
py36-flake8: flake8 --min-version 3.6 {posargs} {[_flake8]files}
py37-flake8: flake8 --min-version 3.7 {posargs} {[_flake8]files}
py38-flake8: flake8 --min-version 3.8 {posargs} {[_flake8]files}
py27-flake8: flake8 {posargs} {[_flake8]files}
py34-flake8: flake8 {posargs} {[_flake8]files}
py35-flake8: flake8 {posargs} {[_flake8]files}
py36-flake8: flake8 {posargs} {[_flake8]files}
py37-flake8: flake8 {posargs} {[_flake8]files}
py38-flake8: flake8 {posargs} {[_flake8]files}
[testenv:docs]
basepython = python2.7