From f52e8930144762d7bbc13c47c6358dcc31bb8ecb Mon Sep 17 00:00:00 2001 From: Dan Mick Date: Tue, 7 Oct 2025 10:15:49 -0700 Subject: [PATCH] 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 --- ceph-build-pull-requests/build/build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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[@]}" -- 2.39.5