From: Dan Mick Date: Tue, 7 Oct 2025 17:15:49 +0000 (-0700) Subject: ceph-build-pull-requsts: unpin urllib3 X-Git-Url: http://git.apps.os.sepia.ceph.com/?a=commitdiff_plain;h=f52e8930144762d7bbc13c47c6358dcc31bb8ecb;p=ceph-build.git ceph-build-pull-requsts: unpin urllib3 It probably shouldn't have been pinned to a specific version anyway, but because it had custom import code, it broke with the Python in noble (3.13 I think). Removing the pin gets a version without the problem (I think the custom import code went away altogether). Signed-off-by: Dan Mick --- diff --git a/ceph-build-pull-requests/build/build b/ceph-build-pull-requests/build/build index 5193fc02..3c494852 100644 --- a/ceph-build-pull-requests/build/build +++ b/ceph-build-pull-requests/build/build @@ -6,7 +6,7 @@ set -e PATH=$PATH:$HOME/.local/bin uv venv -pkgs=( "ansible" "ansible-core" "jenkins-job-builder>=6.4.3" "urllib3==1.26.1" "pyopenssl" "ndg-httpsclient" "pyasn1" "xmltodict" ) +pkgs=( "ansible" "ansible-core" "jenkins-job-builder>=6.4.3" "urllib3" "pyopenssl" "ndg-httpsclient" "pyasn1" "xmltodict" ) VENV=./.venv/bin uv pip install "${pkgs[@]}"