From 2f1b1a601ba40be4eb592872838acaabb6b9a5f8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Aija=20Jaunt=C4=93va?= Date: Mon, 31 Aug 2020 11:14:51 -0400 Subject: [PATCH] Fix `tox -epep8` for python3.8 users For those who have default python3 pointing to 3.8 an error occurs for `tox -epep8` as it tries to use older pyflakes that has bug when running under python3.8. Bump `hacking` to later versions where the bug is fixed. Change-Id: I7bdde5c67b41be2c9fed92e2713ef22399013169 --- test-requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test-requirements.txt b/test-requirements.txt index d87015c..97ee321 100644 --- a/test-requirements.txt +++ b/test-requirements.txt @@ -4,5 +4,5 @@ coverage>=3.6 doc8 -hacking>=1.1.0,<1.2.0 # Apache-2.0 +hacking>=3.0.1,<3.1.0 # Apache-2.0 requests-mock>=1.0