Skip to content

Commit b35085b

Browse files
committed
Upgrade to latest version of coverage
The issue that was introduced in coverage 6.3 has been fixed: coveragepy/coveragepy#1310 (comment). We can't just upgrade to `coverage` or `coverage>=6.4` because the former could install bad versions of coverage (e.g. 6.3), and the latter is unsupported on Python 3.6, which we want to continue supporting. This patch just bans coverage 6.3 / 6.3.x, so with Python 3.7+, we'll use the latest version of coverage, and with Python 3.6, we'll use the latest supported version of coverage that's not a 6.3 release.
1 parent 6bd6c07 commit b35085b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

requirements-dev.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Python dependencies for development
2-
coverage<6.3
2+
coverage != 6.3, != 6.3.*
33
pre-commit
44
pytest
55
pytest-cov

0 commit comments

Comments
 (0)