From 5146ab497c10f71115ba73036da736ef38e168ef Mon Sep 17 00:00:00 2001 From: Yugang Wang Date: Wed, 4 Oct 2017 10:49:10 -0700 Subject: [PATCH] pin to newer versions of requests and adal (#4597) --- requirements.txt | 4 ++-- src/azure-cli-core/setup.py | 2 +- src/command_modules/azure-cli-profile/setup.py | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/requirements.txt b/requirements.txt index b0af77de41e..114e238adba 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,4 +1,4 @@ -adal==0.4.3 +adal==0.4.7 applicationinsights==0.10.0 argcomplete==1.8.0 colorama==0.3.7 @@ -10,7 +10,7 @@ pip==9.0.1 pygments==2.1.3 pyOpenSSL==16.2.0 pyyaml==3.11 -requests==2.9.1 +requests==2.18.4 setuptools==30.4.0 six==1.10.0 vcrpy==1.10.3 diff --git a/src/azure-cli-core/setup.py b/src/azure-cli-core/setup.py index 54fdae6b6d7..374390d0fec 100644 --- a/src/azure-cli-core/setup.py +++ b/src/azure-cli-core/setup.py @@ -50,7 +50,7 @@ # TODO These dependencies should be updated to reflect only what this package needs DEPENDENCIES = [ - 'adal>=0.4.3', + 'adal>=0.4.7', 'applicationinsights', 'argcomplete>=1.8.0', 'colorama', diff --git a/src/command_modules/azure-cli-profile/setup.py b/src/command_modules/azure-cli-profile/setup.py index 90ad891174a..0056dc3ff73 100644 --- a/src/command_modules/azure-cli-profile/setup.py +++ b/src/command_modules/azure-cli-profile/setup.py @@ -30,7 +30,7 @@ ] DEPENDENCIES = [ - 'adal>=0.4.3', + 'adal>=0.4.7', 'azure-cli-core', ]