From 049f4e116d704ef12c9ff241e3c519b7f995ac39 Mon Sep 17 00:00:00 2001 From: Martin Strobel Date: Thu, 13 Jun 2019 10:33:35 -0700 Subject: [PATCH] pyOpenSSL isn't governed by semantic version, rather it uses date-based. For that reason, the normal ~= isn't appropriate. --- 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 c2f4a1347be..4a4813ad683 100644 --- a/src/azure-cli/setup.py +++ b/src/azure-cli/setup.py @@ -127,7 +127,7 @@ 'paramiko>=2.0.8,<3.0.0', 'prompt_toolkit~=1.0,>=1.0.15', 'pydocumentdb>=2.0.1,<3.0.0', - 'pyOpenSSL~=19.0', + 'pyOpenSSL>=17.1.0', 'pytz==2019.1', 'pyyaml~=5.1', 'requests~=2.22',