Skip to content

Commit 87bca57

Browse files
authored
remove upper bound in setup.py (#34402)
* remove upper bound in setup.py * update * update * update * revert change for monitor * update
1 parent ee767c2 commit 87bca57

File tree

46 files changed

+141
-122
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

46 files changed

+141
-122
lines changed

sdk/appconfiguration/azure-appconfiguration-provider/setup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -73,8 +73,8 @@
7373
python_requires=">=3.6",
7474
install_requires=[
7575
"msrest>=0.6.21",
76-
"azure-core<2.0.0,>=1.28.0",
77-
"azure-appconfiguration<2.0.0,>=1.5.0",
78-
"azure-keyvault-secrets<5.0.0,>=4.3.0",
76+
"azure-core>=1.28.0",
77+
"azure-appconfiguration>=1.5.0",
78+
"azure-keyvault-secrets>=4.3.0",
7979
],
8080
)

sdk/appconfiguration/azure-appconfiguration/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@
6868
packages=find_packages(exclude=exclude_packages),
6969
python_requires=">=3.8",
7070
install_requires=[
71-
"azure-core<2.0.0,>=1.28.0",
71+
"azure-core>=1.28.0",
7272
"isodate>=0.6.0",
7373
],
7474
)

sdk/cognitivelanguage/azure-ai-language-conversations/setup.py

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -51,15 +51,14 @@
5151
"Programming Language :: Python",
5252
"Programming Language :: Python :: 3 :: Only",
5353
"Programming Language :: Python :: 3",
54-
"Programming Language :: Python :: 3.7",
5554
"Programming Language :: Python :: 3.8",
5655
"Programming Language :: Python :: 3.9",
5756
"Programming Language :: Python :: 3.10",
5857
"Programming Language :: Python :: 3.11",
5958
"Programming Language :: Python :: 3.12",
6059
"License :: OSI Approved :: MIT License",
6160
],
62-
python_requires=">=3.7",
61+
python_requires=">=3.8",
6362
zip_safe=False,
6463
packages=find_packages(exclude=[
6564
'tests',
@@ -75,8 +74,8 @@
7574
'azure.ai.language.conversations': ['py.typed'],
7675
},
7776
install_requires=[
78-
"azure-core<2.0.0,>=1.28.0",
79-
"isodate<1.0.0,>=0.6.1",
77+
"azure-core>=1.28.0",
78+
"isodate>=0.6.1",
8079
"typing-extensions>=4.0.1",
8180
],
8281
project_urls={

sdk/cognitivelanguage/azure-ai-language-questionanswering/setup.py

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -41,15 +41,14 @@
4141
"Programming Language :: Python",
4242
"Programming Language :: Python :: 3 :: Only",
4343
"Programming Language :: Python :: 3",
44-
"Programming Language :: Python :: 3.7",
4544
"Programming Language :: Python :: 3.8",
4645
"Programming Language :: Python :: 3.9",
4746
"Programming Language :: Python :: 3.10",
4847
"Programming Language :: Python :: 3.11",
4948
"Programming Language :: Python :: 3.12",
5049
"License :: OSI Approved :: MIT License",
5150
],
52-
python_requires=">=3.7",
51+
python_requires=">=3.8",
5352
zip_safe=False,
5453
packages=find_packages(exclude=[
5554
'tests',
@@ -66,8 +65,8 @@
6665
'azure.ai.language.questionanswering': ['py.typed'],
6766
},
6867
install_requires=[
69-
"azure-core<2.0.0,>=1.28.0",
70-
"isodate<1.0.0,>=0.6.1",
68+
"azure-core>=1.28.0",
69+
"isodate>=0.6.1",
7170
"typing-extensions>=4.0.1",
7271
],
7372
project_urls={

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

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,10 +44,11 @@
4444
'Programming Language :: Python',
4545
"Programming Language :: Python :: 3 :: Only",
4646
'Programming Language :: Python :: 3',
47-
'Programming Language :: Python :: 3.7',
4847
'Programming Language :: Python :: 3.8',
4948
'Programming Language :: Python :: 3.9',
5049
'Programming Language :: Python :: 3.10',
50+
'Programming Language :: Python :: 3.11',
51+
'Programming Language :: Python :: 3.12',
5152
'License :: OSI Approved :: MIT License',
5253
],
5354
zip_safe=False,
@@ -57,14 +58,14 @@
5758
'azure',
5859
'azure.communication'
5960
]),
60-
python_requires=">=3.7",
61+
python_requires=">=3.8",
6162
include_package_data=True,
6263
package_data={
6364
'pytyped': ['py.typed'],
6465
},
6566
install_requires=[
6667
"msrest>=0.7.1",
67-
"azure-core<2.0.0,>=1.29.5",
68+
"azure-core>=1.29.5",
6869
"typing-extensions>=4.3.0",
6970
],
7071
project_urls = {

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

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,6 @@
4444
'Programming Language :: Python',
4545
"Programming Language :: Python :: 3 :: Only",
4646
'Programming Language :: Python :: 3',
47-
'Programming Language :: Python :: 3.7',
4847
'Programming Language :: Python :: 3.8',
4948
'Programming Language :: Python :: 3.9',
5049
'Programming Language :: Python :: 3.10',
@@ -59,14 +58,14 @@
5958
'azure',
6059
'azure.communication'
6160
]),
62-
python_requires=">=3.7",
61+
python_requires=">=3.8",
6362
include_package_data=True,
6463
package_data={
6564
'pytyped': ['py.typed'],
6665
},
6766
install_requires=[
68-
"isodate<1.0.0,>=0.6.1",
69-
"azure-core<2.0.0,>=1.29.5",
67+
"isodate>=0.6.1",
68+
"azure-core>=1.29.5",
7069
"typing-extensions>=4.3.0",
7170
]
7271
)

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -51,11 +51,11 @@
5151
'Programming Language :: Python',
5252
'Programming Language :: Python :: 3 :: Only',
5353
'Programming Language :: Python :: 3',
54-
'Programming Language :: Python :: 3.7',
5554
'Programming Language :: Python :: 3.8',
5655
'Programming Language :: Python :: 3.9',
5756
'Programming Language :: Python :: 3.10',
5857
'Programming Language :: Python :: 3.11',
58+
'Programming Language :: Python :: 3.12',
5959
'License :: OSI Approved :: MIT License',
6060
],
6161
zip_safe=False,
@@ -71,8 +71,8 @@
7171
},
7272
install_requires=[
7373
'msrest>=0.7.1',
74-
'azure-common~=1.1',
75-
'azure-mgmt-core>=1.3.2,<2.0.0',
74+
'azure-common>=1.1',
75+
'azure-mgmt-core>=1.3.2',
7676
],
77-
python_requires=">=3.7"
77+
python_requires=">=3.8"
7878
)

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@
6969
"pytyped": ["py.typed"],
7070
},
7171
python_requires=">=3.8",
72-
install_requires=["msrest>=0.7.1", "azure-core<2.0.0,>=1.24.0"],
72+
install_requires=["msrest>=0.7.1", "azure-core>=1.24.0"],
7373
extras_require={":python_version<'3.8'": ["typing-extensions"]},
7474
project_urls={
7575
"Bug Reports": "https://github.com/Azure/azure-sdk-for-python/issues",

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,8 +63,8 @@
6363
"azure.communication.jobrouter": ["py.typed"],
6464
},
6565
install_requires=[
66-
"isodate<1.0.0,>=0.6.1",
67-
"azure-core<2.0.0,>=1.30.0",
66+
"isodate>=0.6.1",
67+
"azure-core>=1.30.0",
6868
"typing-extensions>=4.6.0",
6969
],
7070
python_requires=">=3.8",

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

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -50,8 +50,11 @@
5050
'Programming Language :: Python',
5151
"Programming Language :: Python :: 3 :: Only",
5252
'Programming Language :: Python :: 3',
53-
'Programming Language :: Python :: 3.7',
5453
'Programming Language :: Python :: 3.8',
54+
'Programming Language :: Python :: 3.9',
55+
'Programming Language :: Python :: 3.10',
56+
'Programming Language :: Python :: 3.11',
57+
'Programming Language :: Python :: 3.12',
5558
'License :: OSI Approved :: MIT License',
5659
],
5760
packages=find_packages(exclude=[
@@ -64,10 +67,10 @@
6467
package_data={
6568
'pytyped': ['py.typed'],
6669
},
67-
python_requires=">=3.7",
70+
python_requires=">=3.8",
6871
install_requires=[
6972
"msrest>=0.7.1",
70-
"azure-core<2.0.0,>=1.24.0"
73+
"azure-core>=1.24.0"
7174
],
7275
extras_require={
7376
":python_version<'3.8'": ["typing-extensions"]

0 commit comments

Comments
 (0)