From a1f08af5220117ae7d306b126002906e33ec7e33 Mon Sep 17 00:00:00 2001 From: Major Hayden Date: Wed, 24 May 2023 11:36:13 -0500 Subject: [PATCH] {packaging} Remove urllib3 secure extra The `secure` extra package from urllib3 was deprecated a long time ago and many Linux distributions, including Fedora, no longer include it in their packages. Signed-off-by: Major Hayden --- src/azure-cli/setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/azure-cli/setup.py b/src/azure-cli/setup.py index 8d3141ab410..b0cd5440e90 100644 --- a/src/azure-cli/setup.py +++ b/src/azure-cli/setup.py @@ -149,7 +149,7 @@ 'semver==2.13.0', 'six>=1.10.0', # six is still used by countless extensions 'sshtunnel~=0.1.4', - 'urllib3[secure]', + 'urllib3', 'websocket-client~=1.3.1', 'xmltodict~=0.12' ]