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

(cherry picked from commit ec265ec08a)
pull/81848/head
Sviatoslav Sydorenko 1 year ago committed by GitHub
parent 58cf53b3c3
commit c7793e65ec
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -1,7 +1,7 @@
--- ---
minor_changes: minor_changes:
- ansible-test — Python 3.83.12 will use ``coverage`` v7.3.0. - ansible-test — Python 3.83.12 will use ``coverage`` v7.3.2.
- ansible-test — ``coverage`` v6.5.0 is to be used only under Python 3.7. - ansible-test — ``coverage`` v6.5.0 is to be used only under Python 3.7.
... ...

@ -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