Skip to content

Commit

Permalink
remove upper bound in setup.py (#34402)
Browse files Browse the repository at this point in the history
* remove upper bound in setup.py

* update

* update

* update

* revert change for monitor

* update
  • Loading branch information
xiangyan99 authored Mar 8, 2024
1 parent ee767c2 commit 87bca57
Show file tree
Hide file tree
Showing 46 changed files with 141 additions and 122 deletions.
6 changes: 3 additions & 3 deletions sdk/appconfiguration/azure-appconfiguration-provider/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,8 +73,8 @@
python_requires=">=3.6",
install_requires=[
"msrest>=0.6.21",
"azure-core<2.0.0,>=1.28.0",
"azure-appconfiguration<2.0.0,>=1.5.0",
"azure-keyvault-secrets<5.0.0,>=4.3.0",
"azure-core>=1.28.0",
"azure-appconfiguration>=1.5.0",
"azure-keyvault-secrets>=4.3.0",
],
)
2 changes: 1 addition & 1 deletion sdk/appconfiguration/azure-appconfiguration/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@
packages=find_packages(exclude=exclude_packages),
python_requires=">=3.8",
install_requires=[
"azure-core<2.0.0,>=1.28.0",
"azure-core>=1.28.0",
"isodate>=0.6.0",
],
)
Original file line number Diff line number Diff line change
Expand Up @@ -51,15 +51,14 @@
"Programming Language :: Python",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"License :: OSI Approved :: MIT License",
],
python_requires=">=3.7",
python_requires=">=3.8",
zip_safe=False,
packages=find_packages(exclude=[
'tests',
Expand All @@ -75,8 +74,8 @@
'azure.ai.language.conversations': ['py.typed'],
},
install_requires=[
"azure-core<2.0.0,>=1.28.0",
"isodate<1.0.0,>=0.6.1",
"azure-core>=1.28.0",
"isodate>=0.6.1",
"typing-extensions>=4.0.1",
],
project_urls={
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,15 +41,14 @@
"Programming Language :: Python",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"License :: OSI Approved :: MIT License",
],
python_requires=">=3.7",
python_requires=">=3.8",
zip_safe=False,
packages=find_packages(exclude=[
'tests',
Expand All @@ -66,8 +65,8 @@
'azure.ai.language.questionanswering': ['py.typed'],
},
install_requires=[
"azure-core<2.0.0,>=1.28.0",
"isodate<1.0.0,>=0.6.1",
"azure-core>=1.28.0",
"isodate>=0.6.1",
"typing-extensions>=4.0.1",
],
project_urls={
Expand Down
7 changes: 4 additions & 3 deletions sdk/communication/azure-communication-callautomation/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,10 +44,11 @@
'Programming Language :: Python',
"Programming Language :: Python :: 3 :: Only",
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'License :: OSI Approved :: MIT License',
],
zip_safe=False,
Expand All @@ -57,14 +58,14 @@
'azure',
'azure.communication'
]),
python_requires=">=3.7",
python_requires=">=3.8",
include_package_data=True,
package_data={
'pytyped': ['py.typed'],
},
install_requires=[
"msrest>=0.7.1",
"azure-core<2.0.0,>=1.29.5",
"azure-core>=1.29.5",
"typing-extensions>=4.3.0",
],
project_urls = {
Expand Down
7 changes: 3 additions & 4 deletions sdk/communication/azure-communication-chat/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,6 @@
'Programming Language :: Python',
"Programming Language :: Python :: 3 :: Only",
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
Expand All @@ -59,14 +58,14 @@
'azure',
'azure.communication'
]),
python_requires=">=3.7",
python_requires=">=3.8",
include_package_data=True,
package_data={
'pytyped': ['py.typed'],
},
install_requires=[
"isodate<1.0.0,>=0.6.1",
"azure-core<2.0.0,>=1.29.5",
"isodate>=0.6.1",
"azure-core>=1.29.5",
"typing-extensions>=4.3.0",
]
)
8 changes: 4 additions & 4 deletions sdk/communication/azure-communication-email/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,11 +51,11 @@
'Programming Language :: Python',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'License :: OSI Approved :: MIT License',
],
zip_safe=False,
Expand All @@ -71,8 +71,8 @@
},
install_requires=[
'msrest>=0.7.1',
'azure-common~=1.1',
'azure-mgmt-core>=1.3.2,<2.0.0',
'azure-common>=1.1',
'azure-mgmt-core>=1.3.2',
],
python_requires=">=3.7"
python_requires=">=3.8"
)
2 changes: 1 addition & 1 deletion sdk/communication/azure-communication-identity/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@
"pytyped": ["py.typed"],
},
python_requires=">=3.8",
install_requires=["msrest>=0.7.1", "azure-core<2.0.0,>=1.24.0"],
install_requires=["msrest>=0.7.1", "azure-core>=1.24.0"],
extras_require={":python_version<'3.8'": ["typing-extensions"]},
project_urls={
"Bug Reports": "https://github.com/Azure/azure-sdk-for-python/issues",
Expand Down
4 changes: 2 additions & 2 deletions sdk/communication/azure-communication-jobrouter/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,8 +63,8 @@
"azure.communication.jobrouter": ["py.typed"],
},
install_requires=[
"isodate<1.0.0,>=0.6.1",
"azure-core<2.0.0,>=1.30.0",
"isodate>=0.6.1",
"azure-core>=1.30.0",
"typing-extensions>=4.6.0",
],
python_requires=">=3.8",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,11 @@
'Programming Language :: Python',
"Programming Language :: Python :: 3 :: Only",
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'License :: OSI Approved :: MIT License',
],
packages=find_packages(exclude=[
Expand All @@ -64,10 +67,10 @@
package_data={
'pytyped': ['py.typed'],
},
python_requires=">=3.7",
python_requires=">=3.8",
install_requires=[
"msrest>=0.7.1",
"azure-core<2.0.0,>=1.24.0"
"azure-core>=1.24.0"
],
extras_require={
":python_version<'3.8'": ["typing-extensions"]
Expand Down
9 changes: 6 additions & 3 deletions sdk/communication/azure-communication-phonenumbers/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,11 @@
'Programming Language :: Python',
"Programming Language :: Python :: 3 :: Only",
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'License :: OSI Approved :: MIT License',
],
packages=find_packages(exclude=[
Expand All @@ -63,10 +66,10 @@
package_data={
'pytyped': ['py.typed'],
},
python_requires=">=3.7",
python_requires=">=3.8",
install_requires=[
"msrest>=0.7.1",
'azure-core<2.0.0,>=1.24.0',
'azure-core>=1.24.0',
],
extras_require={
":python_version<'3.8'": ["typing-extensions"]
Expand Down
7 changes: 4 additions & 3 deletions sdk/communication/azure-communication-rooms/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,10 +48,11 @@
"Programming Language :: Python",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"License :: OSI Approved :: MIT License",
],
zip_safe=False,
Expand All @@ -64,10 +65,10 @@
]
),
install_requires=[
"azure-core<2.0.0,>=1.24.0",
"azure-core>=1.24.0",
"msrest>=0.7.1",
],
python_requires=">=3.7",
python_requires=">=3.8",
include_package_data=True,
extras_require={
":python_version<'3.8'": ["typing-extensions"]
Expand Down
9 changes: 6 additions & 3 deletions sdk/communication/azure-communication-sms/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,11 @@
'Programming Language :: Python',
"Programming Language :: Python :: 3 :: Only",
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'License :: OSI Approved :: MIT License',
],
packages=find_packages(exclude=[
Expand All @@ -63,9 +66,9 @@
package_data={
'pytyped': ['py.typed'],
},
python_requires=">=3.7",
python_requires=">=3.8",
install_requires=[
'azure-core<2.0.0,>=1.24.0',
'azure-core>=1.24.0',
'msrest>=0.7.1',
],
extras_require={
Expand Down
6 changes: 3 additions & 3 deletions sdk/communication/azure-mgmt-communication/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,11 +53,11 @@
"Programming Language :: Python",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"License :: OSI Approved :: MIT License",
],
zip_safe=False,
Expand All @@ -76,8 +76,8 @@
install_requires=[
"isodate<1.0.0,>=0.6.1",
"azure-common~=1.1",
"azure-mgmt-core>=1.3.2,<2.0.0",
"azure-mgmt-core>=1.3.2",
"typing-extensions>=4.3.0; python_version<'3.8.0'",
],
python_requires=">=3.7",
python_requires=">=3.8",
)
6 changes: 3 additions & 3 deletions sdk/core/azure-core-experimental/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,11 +45,11 @@
"Programming Language :: Python",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"License :: OSI Approved :: MIT License",
],
zip_safe=False,
Expand All @@ -60,8 +60,8 @@
package_data={
"pytyped": ["py.typed"],
},
python_requires=">=3.7",
python_requires=">=3.8",
install_requires=[
"azure-core<2.0.0,>=1.25.0",
"azure-core>=1.25.0",
],
)
6 changes: 3 additions & 3 deletions sdk/core/azure-core-tracing-opencensus/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,11 +45,11 @@
"Programming Language :: Python",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"License :: OSI Approved :: MIT License",
],
zip_safe=False,
Expand All @@ -60,11 +60,11 @@
package_data={
"pytyped": ["py.typed"],
},
python_requires=">=3.7",
python_requires=">=3.8",
install_requires=[
"opencensus>=0.6.0",
"opencensus-ext-azure>=0.3.1",
"opencensus-ext-threading",
"azure-core<2.0.0,>=1.13.0",
"azure-core>=1.13.0",
],
)
8 changes: 4 additions & 4 deletions sdk/core/azure-core-tracing-opentelemetry/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,11 +45,11 @@
"Programming Language :: Python",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"License :: OSI Approved :: MIT License",
],
zip_safe=False,
Expand All @@ -60,9 +60,9 @@
package_data={
"pytyped": ["py.typed"],
},
python_requires=">=3.7",
python_requires=">=3.8",
install_requires=[
"opentelemetry-api<2.0.0,>=1.12.0",
"azure-core<2.0.0,>=1.24.0",
"opentelemetry-api>=1.12.0",
"azure-core>=1.24.0",
],
)
Loading

0 comments on commit 87bca57

Please sign in to comment.