Skip to content

Commit

Permalink
Fix coverage module to not throw warning in Python 3.11
Browse files Browse the repository at this point in the history
  • Loading branch information
wbond committed Aug 15, 2023
1 parent 133f770 commit 71b24d1
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion requires/coverage
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
coverage == 4.4.1 ; python_version == '2.6'
coverage == 4.5.4 ; python_version == '3.3' or python_version == '3.4'
coverage == 5.5 ; python_version == '2.7' or python_version >= '3.5'
coverage == 5.5 ; python_version == '2.7' or python_version == '3.5' or python_version == '3.6'
coverage == 6.5.0 ; python_version == '3.7'
coverage == 7.3.0 ; python_version >= '3.8'

0 comments on commit 71b24d1

Please sign in to comment.