Bump `coverage.py` to v7.3.2 in `ansible-test` (#81844)

pull/81843/head
Sviatoslav Sydorenko 2 years ago committed by GitHub
parent f31c287348
commit ec265ec08a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -0,0 +1,6 @@
---
bugfixes:
- ansible-test — Python 3.83.12 will use ``coverage`` v7.3.2.
...

@ -1,5 +1,5 @@
# The test-constraints sanity test verifies this file, but changes must be made manually to keep it in up-to-date. # The test-constraints sanity test verifies this file, but changes must be made manually to keep it in up-to-date.
virtualenv == 16.7.12 ; python_version < '3' virtualenv == 16.7.12 ; python_version < '3'
coverage == 7.3.0 ; python_version >= '3.8' and python_version <= '3.12' coverage == 7.3.2 ; python_version >= '3.8' and python_version <= '3.12'
coverage == 6.5.0 ; python_version >= '3.7' and python_version <= '3.7' coverage == 6.5.0 ; python_version >= '3.7' and python_version <= '3.7'
coverage == 4.5.4 ; python_version >= '2.6' and python_version <= '3.6' coverage == 4.5.4 ; python_version >= '2.6' and python_version <= '3.6'

@ -69,7 +69,7 @@ class CoverageVersion:
COVERAGE_VERSIONS = ( COVERAGE_VERSIONS = (
# IMPORTANT: Keep this in sync with the ansible-test.txt requirements file. # IMPORTANT: Keep this in sync with the ansible-test.txt requirements file.
CoverageVersion('7.3.0', 7, (3, 8), (3, 12)), CoverageVersion('7.3.2', 7, (3, 8), (3, 12)),
CoverageVersion('6.5.0', 7, (3, 7), (3, 7)), CoverageVersion('6.5.0', 7, (3, 7), (3, 7)),
CoverageVersion('4.5.4', 0, (2, 6), (3, 6)), CoverageVersion('4.5.4', 0, (2, 6), (3, 6)),
) )

Loading…
Cancel
Save