mirror of https://github.com/ansible/ansible.git
[stable-2.17] 🧪 Pin codecov-cli deptree used in AZP (#85905)
* Use codecov-cli for uploads (#85386) ci_coverage ci_complete (cherry picked from commitpull/85932/head4a03ccbd41) * 🧪 Pin codecov-cli deptree used in AZP PR #85888 `codecov-cli == 11.0.3` allows `click == 8.3.0` in its deps but the latter causes commit auto-discovery breakage in the former. With https://github.com/getsentry/prevent-cli/pull/95, `codecov-cli == 11.2.3` excludes this version so this patch updates the requirement to that. To prevent this from happening again, the change also makes use of a pip constraint file that pins the entire dependency tree to concrete versions. The constraint file is managed by `pip-tools`. Refs: * https://github.com/getsentry/prevent-cli/pull/95 * https://github.com/pallets/click/issues/3066 ci_coverage ci_complete (cherry picked from commit1e572ba5cc) --------- Co-authored-by: Matt Clay <matt@mystile.com>
parent
ca635fac4a
commit
3e36cc3967
@ -0,0 +1,6 @@
|
||||
[tool.pip-tools]
|
||||
allow-unsafe = true # weird outdated default
|
||||
annotation-style = "line" # put the source tracking comments inline
|
||||
generate-hashes = false # pip bug https://github.com/pypa/pip/issues/9243
|
||||
resolver = "backtracking" # modern depresolver
|
||||
strip-extras = true # so that output files are true pip constraints
|
||||
@ -0,0 +1 @@
|
||||
codecov-cli
|
||||
@ -0,0 +1,18 @@
|
||||
#
|
||||
# This file is autogenerated by pip-compile with Python 3.13
|
||||
# by the following command:
|
||||
#
|
||||
# pip-compile --allow-unsafe --annotation-style=line --output-file=codecov.txt --strip-extras codecov.in
|
||||
#
|
||||
certifi==2025.8.3 # via requests, sentry-sdk
|
||||
charset-normalizer==3.4.3 # via requests
|
||||
click==8.2.1 # via codecov-cli
|
||||
codecov-cli==11.2.3 # via -r codecov.in
|
||||
idna==3.10 # via requests
|
||||
ijson==3.4.0 # via codecov-cli
|
||||
pyyaml==6.0.2 # via codecov-cli
|
||||
requests==2.32.5 # via responses
|
||||
responses==0.21.0 # via codecov-cli
|
||||
sentry-sdk==2.38.0 # via codecov-cli
|
||||
test-results-parser==0.5.4 # via codecov-cli
|
||||
urllib3==2.5.0 # via requests, responses, sentry-sdk
|
||||
Loading…
Reference in New Issue