From 7465f1b85409a22cfc76654bad7c784134ab578f Mon Sep 17 00:00:00 2001 From: Liu Shilong Date: Thu, 11 May 2023 04:57:01 +0800 Subject: [PATCH] Fix pipeline issue caused by urllib3 v2 * Fix pipeline issue caused by urllib3 v2 * docker 4.4.1 don't support urllib3 v2. --- .azure-pipelines/test-docker-sonic-vs-template.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.azure-pipelines/test-docker-sonic-vs-template.yml b/.azure-pipelines/test-docker-sonic-vs-template.yml index b677d3fca..8eb3ea533 100644 --- a/.azure-pipelines/test-docker-sonic-vs-template.yml +++ b/.azure-pipelines/test-docker-sonic-vs-template.yml @@ -48,7 +48,7 @@ jobs: # install packages for vs test sudo apt-get install -y net-tools bridge-utils vlan sudo apt-get install -y python3-pip - sudo pip3 install pytest==4.6.2 attrs==19.1.0 exabgp==4.0.10 distro==1.5.0 docker==4.4.1 redis==3.3.4 flaky==3.7.0 + sudo pip3 install pytest==4.6.2 attrs==19.1.0 exabgp==4.0.10 distro==1.5.0 docker>=4.4.1 redis==3.3.4 flaky==3.7.0 displayName: "Install dependencies" - script: |