From 2ce41ab6672b80e2f3f23fb861b37ed78a85e976 Mon Sep 17 00:00:00 2001 From: turalf Date: Mon, 11 Jan 2021 11:24:03 -0800 Subject: [PATCH 1/3] Move core dependency to setup.py from dev_requirements --- sdk/communication/azure-communication-chat/dev_requirements.txt | 1 - sdk/communication/azure-mgmt-communication/setup.py | 1 + 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/sdk/communication/azure-communication-chat/dev_requirements.txt b/sdk/communication/azure-communication-chat/dev_requirements.txt index f0af02f5882f..1281667d25f3 100644 --- a/sdk/communication/azure-communication-chat/dev_requirements.txt +++ b/sdk/communication/azure-communication-chat/dev_requirements.txt @@ -1,6 +1,5 @@ -e ../../../tools/azure-devtools -e ../../../tools/azure-sdk-tools --e ../../core/azure-core ../azure-communication-nspkg -e ../azure-communication-administration aiohttp>=3.0; python_version >= '3.5' \ No newline at end of file diff --git a/sdk/communication/azure-mgmt-communication/setup.py b/sdk/communication/azure-mgmt-communication/setup.py index d26819578f5a..bc25318ec1f7 100644 --- a/sdk/communication/azure-mgmt-communication/setup.py +++ b/sdk/communication/azure-mgmt-communication/setup.py @@ -84,6 +84,7 @@ 'msrest>=0.5.0', 'msrestazure>=0.4.32,<2.0.0', 'azure-common~=1.1', + "azure-core<2.0.0,>=1.9.0" ], extras_require={ ":python_version<'3.0'": ['azure-mgmt-nspkg'], From e4e5f644da7e223c4ed253eba8ed43ff7060b948 Mon Sep 17 00:00:00 2001 From: turalf Date: Mon, 11 Jan 2021 12:42:49 -0800 Subject: [PATCH 2/3] change azure core dependency version --- sdk/communication/azure-mgmt-communication/setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sdk/communication/azure-mgmt-communication/setup.py b/sdk/communication/azure-mgmt-communication/setup.py index bc25318ec1f7..1a96e9b4fc4e 100644 --- a/sdk/communication/azure-mgmt-communication/setup.py +++ b/sdk/communication/azure-mgmt-communication/setup.py @@ -84,7 +84,7 @@ 'msrest>=0.5.0', 'msrestazure>=0.4.32,<2.0.0', 'azure-common~=1.1', - "azure-core<2.0.0,>=1.9.0" + "azure-core<2.0.0,>=1.2.0" ], extras_require={ ":python_version<'3.0'": ['azure-mgmt-nspkg'], From ba03a5e5159f1cae3a92383ac353b721b3a55b63 Mon Sep 17 00:00:00 2001 From: turalf Date: Mon, 11 Jan 2021 13:15:42 -0800 Subject: [PATCH 3/3] Update core version to be >=1.2.2 --- sdk/communication/azure-mgmt-communication/setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sdk/communication/azure-mgmt-communication/setup.py b/sdk/communication/azure-mgmt-communication/setup.py index 1a96e9b4fc4e..078bb85da2ab 100644 --- a/sdk/communication/azure-mgmt-communication/setup.py +++ b/sdk/communication/azure-mgmt-communication/setup.py @@ -84,7 +84,7 @@ 'msrest>=0.5.0', 'msrestazure>=0.4.32,<2.0.0', 'azure-common~=1.1', - "azure-core<2.0.0,>=1.2.0" + "azure-core<2.0.0,>=1.2.2" ], extras_require={ ":python_version<'3.0'": ['azure-mgmt-nspkg'],