Skip to content

Commit 52ff963

Browse files
authored
bump six dependencies in some libraries (#16496)
1 parent cfc953f commit 52ff963

File tree

7 files changed

+15
-15
lines changed

7 files changed

+15
-15
lines changed

sdk/communication/azure-communication-chat/setup.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@
33
from io import open
44
import re
55

6-
# example setup.py Feel free to copy the entire "azure-template" folder into a package folder named
7-
# with "azure-<yourpackagename>". Ensure that the below arguments to setup() are updated to reflect
6+
# example setup.py Feel free to copy the entire "azure-template" folder into a package folder named
7+
# with "azure-<yourpackagename>". Ensure that the below arguments to setup() are updated to reflect
88
# your package.
99

10-
# this setup.py is set up in a specific way to keep the azure* and azure-mgmt-* namespaces WORKING all the way
10+
# this setup.py is set up in a specific way to keep the azure* and azure-mgmt-* namespaces WORKING all the way
1111
# up from python 2.7. Reference here: https://github.com/Azure/azure-sdk-for-python/wiki/Azure-packaging
1212

1313
PACKAGE_NAME = "azure-communication-chat"
@@ -61,7 +61,7 @@
6161
install_requires=[
6262
'azure-core<2.0.0,>=1.9.0',
6363
'msrest>=0.6.0',
64-
'six>=1.6'
64+
'six>=1.11.0'
6565
],
6666
extras_require={
6767
":python_version<'3.0'": ['azure-communication-nspkg'],

sdk/communication/azure-communication-sms/setup.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@
33
from io import open
44
import re
55

6-
# example setup.py Feel free to copy the entire "azure-template" folder into a package folder named
7-
# with "azure-<yourpackagename>". Ensure that the below arguments to setup() are updated to reflect
6+
# example setup.py Feel free to copy the entire "azure-template" folder into a package folder named
7+
# with "azure-<yourpackagename>". Ensure that the below arguments to setup() are updated to reflect
88
# your package.
99

10-
# this setup.py is set up in a specific way to keep the azure* and azure-mgmt-* namespaces WORKING all the way
10+
# this setup.py is set up in a specific way to keep the azure* and azure-mgmt-* namespaces WORKING all the way
1111
# up from python 2.7. Reference here: https://github.com/Azure/azure-sdk-for-python/wiki/Azure-packaging
1212

1313
PACKAGE_NAME = "azure-communication-sms"
@@ -65,7 +65,7 @@
6565
install_requires=[
6666
'azure-core<2.0.0,>=1.9.0',
6767
'msrest>=0.6.0',
68-
'six>=1.6'
68+
'six>=1.11.0'
6969
],
7070
extras_require={
7171
":python_version<'3.0'": ['azure-communication-nspkg'],

sdk/core/azure-core/setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@
6868
},
6969
install_requires=[
7070
'requests>=2.18.4',
71-
'six>=1.6',
71+
'six>=1.11.0',
7272
],
7373
extras_require={
7474
":python_version<'3.0'": ['azure-nspkg'],

sdk/cosmos/azure-cosmos/setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@
6767
]
6868
),
6969
install_requires=[
70-
'six >=1.6',
70+
'six >=1.11.0',
7171
'azure-core<2.0.0,>=1.0.0'
7272
],
7373
extras_require={

sdk/servicebus/azure-servicebus/setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@
8484
'msrest>=0.6.17,<2.0.0',
8585
'azure-core<2.0.0,>=1.6.0',
8686
"isodate>=0.6.0",
87-
"six>=1.6",
87+
"six>=1.11.0",
8888
],
8989
extras_require={
9090
":python_version<'3.0'": ['azure-nspkg', 'futures'],

sdk/textanalytics/azure-ai-textanalytics/setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@
8282
"azure-core<2.0.0,>=1.8.2",
8383
"msrest>=0.6.0",
8484
'azure-common~=1.1',
85-
'six>=1.6',
85+
'six>=1.11.0',
8686
],
8787
extras_require={
8888
":python_version<'3.0'": ['azure-ai-nspkg'],

shared_requirements.txt

+3-3
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ certifi>=2017.4.17
115115
aiohttp>=3.0
116116
aiodns>=2.0
117117
python-dateutil>=2.8.0
118-
six>=1.6
118+
six>=1.11.0
119119
isodate>=0.6.0
120120
avro<2.0.0,>=1.10.0
121121
#override azure azure-keyvault~=1.0
@@ -189,5 +189,5 @@ opentelemetry-sdk==0.16b1
189189
#override azure-opentelemetry-exporter-azuremonitor msrest>=0.6.10
190190
#override azure-core-tracing-opentelemetry opentelemetry-api==0.13b0
191191
#override azure-identity six>=1.12.0
192-
#override azure-ai-formrecognizer six>=1.11.0
193-
#override azure-ai-metricsadvisor six>=1.11.0
192+
#override azure-ai-formrecognizer
193+
#override azure-ai-metricsadvisor

0 commit comments

Comments
 (0)