summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRiccardo Pittau <elfosardo@gmail.com>2020-10-15 16:56:07 +0200
committerRiccardo Pittau <elfosardo@gmail.com>2020-10-19 13:41:14 +0000
commitc1722818e5bced2c659c772e3f1b50f1f565b82c (patch)
treea5d69e8740ef8b4552f97cfb986702c06080cb80
parent4b766d612483c0eb3c04139b037755f16ed44700 (diff)
downloadpython-ironicclient-c1722818e5bced2c659c772e3f1b50f1f565b82c.tar.gz
Set safe version of hacking
Versions of hacking from 3.1.0 until 4.0.0 NOT included are supposed to require a safe version of flake8, so besides normale issues related to minor version upgrades, we can safely use those versions. Also forcing pycodestyle versions to be compatible with flake8 installed by hacking. Change-Id: I3b8e667d0693250d5e5b94874b701f5419990c80
-rw-r--r--test-requirements.txt3
1 files changed, 2 insertions, 1 deletions
diff --git a/test-requirements.txt b/test-requirements.txt
index b60ae9e..4bd8932 100644
--- a/test-requirements.txt
+++ b/test-requirements.txt
@@ -1,7 +1,7 @@
# The order of packages is significant, because pip processes them in the order
# of appearance. Changing the order has an impact on the overall integration
# process, which may cause wedges in the gate later.
-hacking>=3.0.0,<3.1.0 # Apache-2.0
+hacking>=3.1.0,<4.0.0 # Apache-2.0
coverage!=4.4,>=4.0 # Apache-2.0
doc8>=0.6.0 # Apache-2.0
flake8-import-order>=0.17.1 # LGPLv3
@@ -13,5 +13,6 @@ tempest>=17.1.0 # Apache-2.0
stestr>=1.0.0 # Apache-2.0
ddt>=1.0.1 # MIT
python-openstackclient>=3.12.0 # Apache-2.0
+pycodestyle>=2.0.0,<2.7.0 # MIT
# Required for syntax highlighting check
Pygments>=2.2.0 # BSD