From 11b08778beb6f3d31c65fb35b54beabb89fb4bdc Mon Sep 17 00:00:00 2001 From: tracyboehrer Date: Fri, 15 May 2020 08:37:44 -0500 Subject: [PATCH] Updated requests to 2.23.0, pinned more dependencies --- libraries/botbuilder-adapters-slack/requirements.txt | 4 ++-- libraries/botbuilder-adapters-slack/setup.py | 6 +++--- libraries/botbuilder-ai/requirements.txt | 6 +++--- libraries/botbuilder-ai/setup.py | 4 ++-- libraries/botbuilder-applicationinsights/requirements.txt | 2 +- libraries/botbuilder-applicationinsights/setup.py | 8 ++++---- libraries/botbuilder-azure/setup.py | 4 ++-- libraries/botbuilder-core/requirements.txt | 6 +++--- libraries/botbuilder-core/setup.py | 4 ++-- libraries/botbuilder-dialogs/requirements.txt | 8 ++++---- libraries/botbuilder-dialogs/setup.py | 6 +++--- libraries/botbuilder-integration-aiohttp/requirements.txt | 6 +++--- libraries/botbuilder-integration-aiohttp/setup.py | 6 +++--- .../setup.py | 8 ++++---- libraries/botbuilder-testing/requirements.txt | 6 +++--- libraries/botbuilder-testing/setup.py | 6 +++--- libraries/botframework-connector/requirements.txt | 4 ++-- libraries/botframework-connector/setup.py | 4 ++-- 18 files changed, 49 insertions(+), 49 deletions(-) diff --git a/libraries/botbuilder-adapters-slack/requirements.txt b/libraries/botbuilder-adapters-slack/requirements.txt index 03bb1696b..21f25976c 100644 --- a/libraries/botbuilder-adapters-slack/requirements.txt +++ b/libraries/botbuilder-adapters-slack/requirements.txt @@ -1,4 +1,4 @@ -aiohttp +aiohttp==3.6.2 pyslack -botbuilder-core>=4.10.0 +botbuilder-core==4.10.0 slackclient \ No newline at end of file diff --git a/libraries/botbuilder-adapters-slack/setup.py b/libraries/botbuilder-adapters-slack/setup.py index 5669ed41a..666e321f2 100644 --- a/libraries/botbuilder-adapters-slack/setup.py +++ b/libraries/botbuilder-adapters-slack/setup.py @@ -5,9 +5,9 @@ from setuptools import setup REQUIRES = [ - "botbuilder-schema>=4.10.0", - "botframework-connector>=4.10.0", - "botbuilder-core>=4.10.0", + "botbuilder-schema==4.10.0", + "botframework-connector==4.10.0", + "botbuilder-core==4.10.0", ] TEST_REQUIRES = ["aiounittest==1.3.0"] diff --git a/libraries/botbuilder-ai/requirements.txt b/libraries/botbuilder-ai/requirements.txt index 8800f3187..3fc0566e9 100644 --- a/libraries/botbuilder-ai/requirements.txt +++ b/libraries/botbuilder-ai/requirements.txt @@ -1,6 +1,6 @@ msrest==0.6.10 -botbuilder-schema>=4.10.0 -botbuilder-core>=4.10.0 -requests==2.22.0 +botbuilder-schema==4.10.0 +botbuilder-core==4.10.0 +requests==2.23.0 aiounittest==1.3.0 azure-cognitiveservices-language-luis==0.2.0 \ No newline at end of file diff --git a/libraries/botbuilder-ai/setup.py b/libraries/botbuilder-ai/setup.py index 6ed1232dd..ce4aeff18 100644 --- a/libraries/botbuilder-ai/setup.py +++ b/libraries/botbuilder-ai/setup.py @@ -6,8 +6,8 @@ REQUIRES = [ "azure-cognitiveservices-language-luis==0.2.0", - "botbuilder-schema>=4.10.0", - "botbuilder-core>=4.10.0", + "botbuilder-schema==4.10.0", + "botbuilder-core==4.10.0", "aiohttp==3.6.2", ] diff --git a/libraries/botbuilder-applicationinsights/requirements.txt b/libraries/botbuilder-applicationinsights/requirements.txt index 219d8769f..ace87c47c 100644 --- a/libraries/botbuilder-applicationinsights/requirements.txt +++ b/libraries/botbuilder-applicationinsights/requirements.txt @@ -1,3 +1,3 @@ msrest==0.6.10 -botbuilder-core>=4.10.0 +botbuilder-core==4.10.0 aiounittest==1.3.0 \ No newline at end of file diff --git a/libraries/botbuilder-applicationinsights/setup.py b/libraries/botbuilder-applicationinsights/setup.py index 5563b06ec..91de6d1bb 100644 --- a/libraries/botbuilder-applicationinsights/setup.py +++ b/libraries/botbuilder-applicationinsights/setup.py @@ -5,10 +5,10 @@ from setuptools import setup REQUIRES = [ - "applicationinsights>=0.11.9", - "botbuilder-schema>=4.10.0", - "botframework-connector>=4.10.0", - "botbuilder-core>=4.10.0", + "applicationinsights==0.11.9", + "botbuilder-schema==4.10.0", + "botframework-connector==4.10.0", + "botbuilder-core==4.10.0", ] TESTS_REQUIRES = [ "aiounittest==1.3.0", diff --git a/libraries/botbuilder-azure/setup.py b/libraries/botbuilder-azure/setup.py index e92b2def0..7b1a77c64 100644 --- a/libraries/botbuilder-azure/setup.py +++ b/libraries/botbuilder-azure/setup.py @@ -7,8 +7,8 @@ REQUIRES = [ "azure-cosmos==3.1.2", "azure-storage-blob==2.1.0", - "botbuilder-schema>=4.10.0", - "botframework-connector>=4.10.0", + "botbuilder-schema==4.10.0", + "botframework-connector==4.10.0", "jsonpickle==1.2", ] TEST_REQUIRES = ["aiounittest==1.3.0"] diff --git a/libraries/botbuilder-core/requirements.txt b/libraries/botbuilder-core/requirements.txt index 987bd67bb..06e8b3261 100644 --- a/libraries/botbuilder-core/requirements.txt +++ b/libraries/botbuilder-core/requirements.txt @@ -1,7 +1,7 @@ msrest==0.6.10 -botframework-connector>=4.10.0 -botbuilder-schema>=4.10.0 -requests==2.22.0 +botframework-connector==4.10.0 +botbuilder-schema==4.10.0 +requests==2.23.0 PyJWT==1.5.3 cryptography==2.8.0 aiounittest==1.3.0 \ No newline at end of file diff --git a/libraries/botbuilder-core/setup.py b/libraries/botbuilder-core/setup.py index a3d106ac5..fd6e62a24 100644 --- a/libraries/botbuilder-core/setup.py +++ b/libraries/botbuilder-core/setup.py @@ -6,8 +6,8 @@ VERSION = os.environ["packageVersion"] if "packageVersion" in os.environ else "4.10.0" REQUIRES = [ - "botbuilder-schema>=4.10.0", - "botframework-connector>=4.10.0", + "botbuilder-schema==4.10.0", + "botframework-connector==4.10.0", "jsonpickle==1.2", ] diff --git a/libraries/botbuilder-dialogs/requirements.txt b/libraries/botbuilder-dialogs/requirements.txt index 70ab21445..afa25c24e 100644 --- a/libraries/botbuilder-dialogs/requirements.txt +++ b/libraries/botbuilder-dialogs/requirements.txt @@ -1,8 +1,8 @@ msrest==0.6.10 -botframework-connector>=4.10.0 -botbuilder-schema>=4.10.0 -botbuilder-core>=4.10.0 -requests==2.22.0 +botframework-connector==4.10.0 +botbuilder-schema==4.10.0 +botbuilder-core==4.10.0 +requests==2.23.0 PyJWT==1.5.3 cryptography==2.8 aiounittest==1.3.0 diff --git a/libraries/botbuilder-dialogs/setup.py b/libraries/botbuilder-dialogs/setup.py index 67d31f34e..a0719ef81 100644 --- a/libraries/botbuilder-dialogs/setup.py +++ b/libraries/botbuilder-dialogs/setup.py @@ -12,9 +12,9 @@ "recognizers-text>=1.0.2a1", "recognizers-text-choice>=1.0.2a1", "babel==2.7.0", - "botbuilder-schema>=4.10.0", - "botframework-connector>=4.10.0", - "botbuilder-core>=4.10.0", + "botbuilder-schema==4.10.0", + "botframework-connector==4.10.0", + "botbuilder-core==4.10.0", ] TEST_REQUIRES = ["aiounittest==1.3.0"] diff --git a/libraries/botbuilder-integration-aiohttp/requirements.txt b/libraries/botbuilder-integration-aiohttp/requirements.txt index 11a60fd4c..b2706949b 100644 --- a/libraries/botbuilder-integration-aiohttp/requirements.txt +++ b/libraries/botbuilder-integration-aiohttp/requirements.txt @@ -1,4 +1,4 @@ msrest==0.6.10 -botframework-connector>=4.10.0 -botbuilder-schema>=4.10.0 -aiohttp>=3.6.2 \ No newline at end of file +botframework-connector==4.10.0 +botbuilder-schema==4.10.0 +aiohttp==3.6.2 \ No newline at end of file diff --git a/libraries/botbuilder-integration-aiohttp/setup.py b/libraries/botbuilder-integration-aiohttp/setup.py index fc1be7607..7e8376ff3 100644 --- a/libraries/botbuilder-integration-aiohttp/setup.py +++ b/libraries/botbuilder-integration-aiohttp/setup.py @@ -6,9 +6,9 @@ VERSION = os.environ["packageVersion"] if "packageVersion" in os.environ else "4.10.0" REQUIRES = [ - "botbuilder-schema>=4.10.0", - "botframework-connector>=4.10.0", - "botbuilder-core>=4.10.0", + "botbuilder-schema==4.10.0", + "botframework-connector==4.10.0", + "botbuilder-core==4.10.0", "aiohttp==3.6.2", ] diff --git a/libraries/botbuilder-integration-applicationinsights-aiohttp/setup.py b/libraries/botbuilder-integration-applicationinsights-aiohttp/setup.py index 36a1224fb..979e3684a 100644 --- a/libraries/botbuilder-integration-applicationinsights-aiohttp/setup.py +++ b/libraries/botbuilder-integration-applicationinsights-aiohttp/setup.py @@ -7,10 +7,10 @@ REQUIRES = [ "applicationinsights>=0.11.9", "aiohttp==3.6.2", - "botbuilder-schema>=4.10.0", - "botframework-connector>=4.10.0", - "botbuilder-core>=4.10.0", - "botbuilder-applicationinsights>=4.10.0", + "botbuilder-schema==4.10.0", + "botframework-connector==4.10.0", + "botbuilder-core==4.10.0", + "botbuilder-applicationinsights==4.10.0", ] TESTS_REQUIRES = [ "aiounittest==1.3.0", diff --git a/libraries/botbuilder-testing/requirements.txt b/libraries/botbuilder-testing/requirements.txt index 3ca75dde5..d6350bd0c 100644 --- a/libraries/botbuilder-testing/requirements.txt +++ b/libraries/botbuilder-testing/requirements.txt @@ -1,4 +1,4 @@ -botbuilder-schema>=4.10.0 -botbuilder-core>=4.10.0 -botbuilder-dialogs>=4.10.0 +botbuilder-schema==4.10.0 +botbuilder-core==4.10.0 +botbuilder-dialogs==4.10.0 aiounittest==1.3.0 diff --git a/libraries/botbuilder-testing/setup.py b/libraries/botbuilder-testing/setup.py index e45e0d1f2..21cb2f684 100644 --- a/libraries/botbuilder-testing/setup.py +++ b/libraries/botbuilder-testing/setup.py @@ -5,9 +5,9 @@ from setuptools import setup REQUIRES = [ - "botbuilder-schema>=4.10.0", - "botbuilder-core>=4.10.0", - "botbuilder-dialogs>=4.10.0", + "botbuilder-schema==4.10.0", + "botbuilder-core==4.10.0", + "botbuilder-dialogs==4.10.0", ] TESTS_REQUIRES = ["aiounittest==1.3.0"] diff --git a/libraries/botframework-connector/requirements.txt b/libraries/botframework-connector/requirements.txt index 2511e913e..1d47eebff 100644 --- a/libraries/botframework-connector/requirements.txt +++ b/libraries/botframework-connector/requirements.txt @@ -1,6 +1,6 @@ msrest==0.6.10 -botbuilder-schema>=4.10.0 -requests==2.22.0 +botbuilder-schema==4.10.0 +requests==2.23.0 PyJWT==1.5.3 cryptography==2.8.0 msal==1.2.0 diff --git a/libraries/botframework-connector/setup.py b/libraries/botframework-connector/setup.py index 1cc2844f1..fc3fc82e1 100644 --- a/libraries/botframework-connector/setup.py +++ b/libraries/botframework-connector/setup.py @@ -7,10 +7,10 @@ VERSION = os.environ["packageVersion"] if "packageVersion" in os.environ else "4.10.0" REQUIRES = [ "msrest==0.6.10", - "requests==2.22.0", + "requests==2.23.0", "cryptography==2.8.0", "PyJWT==1.5.3", - "botbuilder-schema>=4.10.0", + "botbuilder-schema==4.10.0", "adal==1.2.1", "msal==1.2.0", ]