]> git.apps.os.sepia.ceph.com Git - ceph-build.git/commitdiff
ceph-build-pull-requsts: unpin urllib3 2463/head
authorDan Mick <dan.mick@redhat.com>
Tue, 7 Oct 2025 17:15:49 +0000 (10:15 -0700)
committerDan Mick <dan.mick@redhat.com>
Tue, 7 Oct 2025 17:15:49 +0000 (10:15 -0700)
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 <dan.mick@redhat.com>
ceph-build-pull-requests/build/build

index 5193fc02f6eb0056b5631024776eca62cab3ad31..3c4948528471f90d8ce450f280ed0a7afcf4506c 100644 (file)
@@ -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[@]}"