From 7a6623125399ec1d5b238e1d063162e064a0fa38 Mon Sep 17 00:00:00 2001 From: Thomas Kriechbaumer Date: Tue, 5 Oct 2021 21:32:11 +0200 Subject: [PATCH] fix import errors caused by coverage.py (#4843) * fix import errors caused by coverage.py * LINT Co-authored-by: Maximilian Hils --- setup.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index de0c327b9..ff52eef9c 100644 --- a/setup.py +++ b/setup.py @@ -109,7 +109,8 @@ setup( "pytest>=6.1.0,<7", "requests>=2.9.1,<3", "tox>=3.5,<4", - "wheel>=0.36.2,<0.38" + "wheel>=0.36.2,<0.38", + "coverage==5.5", # workaround issue with import errors introduced in 5.6b1/6.0 ], } )