From 73e105f0438dcb55e35e894631b7488ed17a1e85 Mon Sep 17 00:00:00 2001 From: Sergey Fedoseev Date: Wed, 26 Jan 2022 12:43:31 +0500 Subject: [PATCH] Pin coverage==6.2 to fix tests (#2634) See https://github.com/nedbat/coveragepy/issues/1310 and https://github.com/nedbat/coveragepy/issues/1312. --- api/python/setup.py | 1 + 1 file changed, 1 insertion(+) diff --git a/api/python/setup.py b/api/python/setup.py index a559a99cca5..45983865f10 100644 --- a/api/python/setup.py +++ b/api/python/setup.py @@ -85,6 +85,7 @@ def run(self): 'pyarrow>=0.14.1', # as of 7/5/19: linux/circleci bugs on 0.14.0 'pytest==6.*', 'pytest-cov', + 'coverage==6.2', 'pytest-env', 'pytest-subtests', 'responses',