Skip to content

Commit

Permalink
bump six dependencies in some libraries (#16496)
Browse files Browse the repository at this point in the history
  • Loading branch information
iscai-msft authored Feb 4, 2021
1 parent cfc953f commit 52ff963
Show file tree
Hide file tree
Showing 7 changed files with 15 additions and 15 deletions.
8 changes: 4 additions & 4 deletions sdk/communication/azure-communication-chat/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@
from io import open
import re

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

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

PACKAGE_NAME = "azure-communication-chat"
Expand Down Expand Up @@ -61,7 +61,7 @@
install_requires=[
'azure-core<2.0.0,>=1.9.0',
'msrest>=0.6.0',
'six>=1.6'
'six>=1.11.0'
],
extras_require={
":python_version<'3.0'": ['azure-communication-nspkg'],
Expand Down
8 changes: 4 additions & 4 deletions sdk/communication/azure-communication-sms/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@
from io import open
import re

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

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

PACKAGE_NAME = "azure-communication-sms"
Expand Down Expand Up @@ -65,7 +65,7 @@
install_requires=[
'azure-core<2.0.0,>=1.9.0',
'msrest>=0.6.0',
'six>=1.6'
'six>=1.11.0'
],
extras_require={
":python_version<'3.0'": ['azure-communication-nspkg'],
Expand Down
2 changes: 1 addition & 1 deletion sdk/core/azure-core/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@
},
install_requires=[
'requests>=2.18.4',
'six>=1.6',
'six>=1.11.0',
],
extras_require={
":python_version<'3.0'": ['azure-nspkg'],
Expand Down
2 changes: 1 addition & 1 deletion sdk/cosmos/azure-cosmos/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@
]
),
install_requires=[
'six >=1.6',
'six >=1.11.0',
'azure-core<2.0.0,>=1.0.0'
],
extras_require={
Expand Down
2 changes: 1 addition & 1 deletion sdk/servicebus/azure-servicebus/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@
'msrest>=0.6.17,<2.0.0',
'azure-core<2.0.0,>=1.6.0',
"isodate>=0.6.0",
"six>=1.6",
"six>=1.11.0",
],
extras_require={
":python_version<'3.0'": ['azure-nspkg', 'futures'],
Expand Down
2 changes: 1 addition & 1 deletion sdk/textanalytics/azure-ai-textanalytics/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@
"azure-core<2.0.0,>=1.8.2",
"msrest>=0.6.0",
'azure-common~=1.1',
'six>=1.6',
'six>=1.11.0',
],
extras_require={
":python_version<'3.0'": ['azure-ai-nspkg'],
Expand Down
6 changes: 3 additions & 3 deletions shared_requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ certifi>=2017.4.17
aiohttp>=3.0
aiodns>=2.0
python-dateutil>=2.8.0
six>=1.6
six>=1.11.0
isodate>=0.6.0
avro<2.0.0,>=1.10.0
#override azure azure-keyvault~=1.0
Expand Down Expand Up @@ -189,5 +189,5 @@ opentelemetry-sdk==0.16b1
#override azure-opentelemetry-exporter-azuremonitor msrest>=0.6.10
#override azure-core-tracing-opentelemetry opentelemetry-api==0.13b0
#override azure-identity six>=1.12.0
#override azure-ai-formrecognizer six>=1.11.0
#override azure-ai-metricsadvisor six>=1.11.0
#override azure-ai-formrecognizer
#override azure-ai-metricsadvisor

0 comments on commit 52ff963

Please sign in to comment.