diff options
author | Daniel Watkins <oddbloke@ubuntu.com> | 2020-03-10 14:40:27 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-10 14:40:27 -0400 |
commit | 64c33704853087c05c54e157fc42a340a4350159 (patch) | |
tree | a029e3424408b9bb6331d111a691884828ec8a38 /tox.ini | |
parent | 986f37b017134ced5d9dd38b420350916297002b (diff) | |
download | vyos-cloud-init-64c33704853087c05c54e157fc42a340a4350159.tar.gz vyos-cloud-init-64c33704853087c05c54e157fc42a340a4350159.zip |
tox.ini: bump pyflakes version to 2.1.1 (#239)
pyflakes versions older than 2.1.0 are incompatible with Python 3.8
(which is the Python version in the current Ubuntu development release).
See https://github.com/PyCQA/pyflakes/issues/367 for details.
2.1.1 is the latest version ATM, so bump to that.
Diffstat (limited to 'tox.ini')
-rw-r--r-- | tox.ini | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -108,7 +108,7 @@ deps = pycodestyle [testenv:pyflakes] commands = {envpython} -m pyflakes {posargs:cloudinit/ tests/ tools/} deps = - pyflakes==1.6.0 + pyflakes==2.1.1 [testenv:tip-pyflakes] commands = {envpython} -m pyflakes {posargs:cloudinit/ tests/ tools/} |