diff options
author | John Snow <jsnow@redhat.com> | 2021-05-27 17:17:04 -0400 |
---|---|---|
committer | John Snow <jsnow@redhat.com> | 2021-06-01 16:21:21 -0400 |
commit | 6d17d910434568626c1c739b7d3d8433618b19eb (patch) | |
tree | 196676b56d1208191ef1f84b6bb47b9e3ca12fe9 /python/Pipfile | |
parent | 21d0b8667981e386cdfec18ad7d3eb4d9a33b088 (diff) | |
download | qemu-6d17d910434568626c1c739b7d3d8433618b19eb.zip qemu-6d17d910434568626c1c739b7d3d8433618b19eb.tar.gz qemu-6d17d910434568626c1c739b7d3d8433618b19eb.tar.bz2 |
python: Add flake8 to pipenv
flake8 3.5.x does not support the --extend-ignore syntax used in the
.flake8 file to gracefully extend default ignores, so 3.6.x is our
minimum requirement. There is no known upper bound.
flake8 can be run from the python/ directory with no arguments.
Signed-off-by: John Snow <jsnow@redhat.com>
Reviewed-by: Cleber Rosa <crosa@redhat.com>
Tested-by: Cleber Rosa <crosa@redhat.com>
Message-id: 20210527211715.394144-21-jsnow@redhat.com
Signed-off-by: John Snow <jsnow@redhat.com>
Diffstat (limited to 'python/Pipfile')
-rw-r--r-- | python/Pipfile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/python/Pipfile b/python/Pipfile index 285e2c8..053f344 100644 --- a/python/Pipfile +++ b/python/Pipfile @@ -4,6 +4,7 @@ url = "https://pypi.org/simple" verify_ssl = true [dev-packages] +flake8 = ">=3.6.0" pylint = ">=2.8.0" [packages] |