fix import errors caused by coverage.py (#4843)

* fix import errors caused by coverage.py

* LINT

Co-authored-by: Maximilian Hils <github@maximilianhils.com>
This commit is contained in:
Thomas Kriechbaumer 2021-10-05 21:32:11 +02:00 committed by GitHub
parent aa2f935dbb
commit 7a66231253
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -109,7 +109,8 @@ setup(
"pytest>=6.1.0,<7", "pytest>=6.1.0,<7",
"requests>=2.9.1,<3", "requests>=2.9.1,<3",
"tox>=3.5,<4", "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
], ],
} }
) )