From 4d5d7a5296de26793da5cab2c74e48206d78d853 Mon Sep 17 00:00:00 2001 From: Andreas Maier Date: Mon, 27 Nov 2023 11:04:25 +0100 Subject: [PATCH] Fixed pip backtracking for coverage package Signed-off-by: Andreas Maier --- dev-requirements.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/dev-requirements.txt b/dev-requirements.txt index 055ba585..89160f9c 100644 --- a/dev-requirements.txt +++ b/dev-requirements.txt @@ -56,7 +56,10 @@ packaging>=21.0,<22.0 colorama>=0.4.5 # Coverage reporting (no imports, invoked via coveralls script): -coverage>=5.5 +# coveralls pins coverage to <7.0, causing pip backtracking to happen. Pinning +# it to <7.0 in this file saves the time for backtracking, but requires to +# occasionally check for new versions of coveralls without pinning. +coverage>=5.5,<7.0 pytest-cov>=2.12.1 coveralls>=3.3.0