Skip to content

Commit 66b1e7d

Browse files
authored
remove upper bound for ml (#34422)
1 parent 3cdde0b commit 66b1e7d

File tree

1 file changed

+17
-17
lines changed

1 file changed

+17
-17
lines changed

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

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -64,30 +64,30 @@
6464
"azure.ai",
6565
]
6666
),
67-
python_requires="<4.0,>=3.7",
67+
python_requires=">=3.7",
6868
install_requires=[
6969
# NOTE: To avoid breaking changes in a major version bump, all dependencies should pin an upper bound if possible.
70-
"pyyaml<7.0.0,>=5.1.0",
70+
"pyyaml>=5.1.0",
7171
"msrest>=0.6.18",
72-
"azure-core<2.0.0,>=1.23.0",
73-
"azure-mgmt-core<2.0.0,>=1.3.0",
74-
"marshmallow<4.0.0,>=3.5",
75-
"jsonschema<5.0.0,>=4.0.0",
76-
"tqdm<5.0.0",
72+
"azure-core>=1.23.0",
73+
"azure-mgmt-core>=1.3.0",
74+
"marshmallow>=3.5",
75+
"jsonschema>=4.0.0",
76+
"tqdm",
7777
# Used for PR 825138
78-
"strictyaml<2.0.0",
78+
"strictyaml",
7979
# Used for PR 718512
80-
"colorama<0.5.0",
81-
"pyjwt<3.0.0",
82-
"azure-storage-blob<13.0.0,>=12.10.0",
83-
"azure-storage-file-share<13.0.0",
84-
"azure-storage-file-datalake<13.0.0",
80+
"colorama",
81+
"pyjwt",
82+
"azure-storage-blob>=12.10.0",
83+
"azure-storage-file-share",
84+
"azure-storage-file-datalake",
8585
"pydash>=6.0.0",
8686
"isodate",
87-
"azure-common<2.0.0,>=1.1",
88-
"typing-extensions<5.0.0",
89-
"opencensus-ext-azure<2.0.0",
90-
"opencensus-ext-logging<=0.1.1",
87+
"azure-common>=1.1",
88+
"typing-extensions",
89+
"opencensus-ext-azure",
90+
"opencensus-ext-logging",
9191
],
9292
extras_require={
9393
# user can run `pip install azure-ai-ml[designer]` to install mldesigner alone with this package

0 commit comments

Comments
 (0)