From 26caef544f5e2f5996dedaed3e6e20e99f9a5d1f Mon Sep 17 00:00:00 2001 From: Jef LeCompte Date: Thu, 4 Jun 2020 01:21:46 -0400 Subject: [PATCH] fix: remove `--min-version` --- tox.ini | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/tox.ini b/tox.ini index 19cb3069b..9c1bc4106 100644 --- a/tox.ini +++ b/tox.ini @@ -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