ansible-test - Upgrade coverage to 7.10.7 (#85981)

This commit is contained in:
Matt Clay 2025-10-13 14:30:14 -07:00 committed by GitHub
parent de7dd5bbb2
commit 7c2311d547
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 3 additions and 3 deletions

View File

@ -1,2 +1,2 @@
minor_changes:
- ansible-test - Upgrade to ``coverage`` version 7.10.6 for Python 3.9 and later.
- ansible-test - Upgrade to ``coverage`` version 7.10.7 for Python 3.9 and later.

View File

@ -1,2 +1,2 @@
# The test-constraints sanity test verifies this file, but changes must be made manually to keep it in up-to-date.
coverage == 7.10.6 ; python_version >= '3.9' and python_version <= '3.14'
coverage == 7.10.7 ; python_version >= '3.9' and python_version <= '3.14'

View File

@ -69,7 +69,7 @@ class CoverageVersion:
COVERAGE_VERSIONS = (
# IMPORTANT: Keep this in sync with the ansible-test.txt requirements file.
CoverageVersion('7.10.6', 7, (3, 9), (3, 14)),
CoverageVersion('7.10.7', 7, (3, 9), (3, 14)),
)
"""
This tuple specifies the coverage version to use for Python version ranges.