From a4d89d9d0d909171d9d812a81ad2a978a00230c6 Mon Sep 17 00:00:00 2001 From: Riccardo Pittau Date: Mon, 19 Oct 2020 12:41:59 +0200 Subject: [PATCH] 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: Iffb6019b339ca5412bb6957274b7d12233bc7db7 --- test-requirements.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/test-requirements.txt b/test-requirements.txt index 5fba73e..07f5213 100644 --- a/test-requirements.txt +++ b/test-requirements.txt @@ -2,7 +2,7 @@ # 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 @@ -13,4 +13,5 @@ testtools>=2.2.0 # MIT os-testr>=1.0.0 # Apache-2.0 reno>=2.5.0 # Apache-2.0 flake8-import-order>=0.17.1 # LGPLv3 +pycodestyle>=2.0.0,<2.7.0 # MIT