Remove explicit dependency on pep8/pyflakes

flake8 already pulls in the new dependency (pycodestyle and pyflakes)
in the right versions, so listing it explicitely is wrong and
unnecessary. flake8 2.5.5 depends on:
  'pep8 (>=1.5.7,!=1.6.0,!=1.6.1,!=1.6.2)',
  'pyflakes (<1.1,>=0.8.1)']

This seems to be from times where flake8 wasn't doing that before.

Change-Id: Ib145e2afa97f441c07fada9c30f0f0e2410870ae
This commit is contained in:
Dirk Mueller 2017-10-26 13:14:39 +02:00
parent 391d7c38f5
commit a331e6bc88
1 changed files with 1 additions and 3 deletions

View File

@ -3,9 +3,7 @@
# process, which may cause wedges in the gate later.
# this file lists dependencies required for the testing of heat
# Install bounded pep8/pyflakes first, then let flake8 install
pep8==1.5.7 # MIT
pyflakes==0.8.1 # MIT
# Install flake8 first, it pulls in the right linter versions
flake8<2.6.0,>=2.5.4 # MIT
coverage!=4.4,>=4.0 # Apache-2.0