Skip to content

Commit

Permalink
Fixed pip backtracking for coverage package
Browse files Browse the repository at this point in the history
Signed-off-by: Andreas Maier <[email protected]>
  • Loading branch information
andy-maier committed Nov 27, 2023
1 parent f90bf48 commit 4d5d7a5
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion dev-requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit 4d5d7a5

Please sign in to comment.