azureml-core 1.60.0__py3-none-any.whl → 1.60.0.post1__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -99,7 +99,6 @@ def makedirs_for_file_path(file_path):
99
99
  :param file_path: relative or absolute path to a file
100
100
  """
101
101
  file_path = os.path.normpath(file_path)
102
- file_path = os.path.abspath(file_path)
103
102
  parent_path = os.path.join(file_path, os.path.pardir)
104
103
  parent_path = os.path.normpath(parent_path)
105
104
  # CodeQL [SM01305] untrusted data is validated before being used in the path
@@ -209,7 +208,6 @@ def download_file(source_uri, path=None, max_retries=5, stream=True, protocol="h
209
208
  module_logger.debug('Output file path is {}, the file was not downloaded.'.format(path))
210
209
  return
211
210
  path = os.path.normpath(path)
212
- path = os.path.abspath(path)
213
211
  # download using BlobClient
214
212
  if is_source_uri_matches_storage_blob(source_uri):
215
213
  sas_token, account_name, endpoint_suffix, container_name, blob_name = get_block_blob_service_credentials(
@@ -1,8 +1,8 @@
1
1
  {
2
- "mcr.microsoft.com/azureml/openmpi4.1.0-cuda11.8-cudnn8-ubuntu22.04": "20250331.v1",
3
- "mcr.microsoft.com/azureml/openmpi4.1.0-ubuntu22.04": "20250331.v1",
4
- "mcr.microsoft.com/azureml/openmpi5.0-cuda12.4-ubuntu22.04": "20250331.v1",
5
- "mcr.microsoft.com/azureml/openmpi5.0-cuda12.5-ubuntu22.04": "20250331.v1",
6
- "mcr.microsoft.com/azureml/openmpi5.0-cuda12.6-ubuntu24.04": "20250331.v1",
7
- "mcr.microsoft.com/azureml/openmpi5.0-ubuntu24.04": "20250331.v1"
2
+ "mcr.microsoft.com/azureml/openmpi4.1.0-cuda11.8-cudnn8-ubuntu22.04": "20250505.v1",
3
+ "mcr.microsoft.com/azureml/openmpi4.1.0-ubuntu22.04": "20250505.v1",
4
+ "mcr.microsoft.com/azureml/openmpi5.0-cuda12.4-ubuntu22.04": "20250505.v1",
5
+ "mcr.microsoft.com/azureml/openmpi5.0-cuda12.5-ubuntu22.04": "20250505.v1",
6
+ "mcr.microsoft.com/azureml/openmpi5.0-cuda12.6-ubuntu24.04": "20250505.v1",
7
+ "mcr.microsoft.com/azureml/openmpi5.0-ubuntu24.04": "20250505.v1"
8
8
  }
@@ -1,45 +1,12 @@
1
- azureml-core
2
- azureml-train
3
- azureml-sdk
4
- azureml-defaults
5
- azureml-train-core
6
- azureml-automl-core
7
- azureml-automl-runtime
8
- azureml-training-tabular
9
- azureml-train-automl
10
- azureml-train-automl-client
11
- azureml-train-automl-runtime
12
- azureml-contrib-automl-dnn-forecasting
13
- azureml-automl-dnn-vision
14
- azureml-automl-dnn-nlp
15
- azureml-contrib-automl-pipeline-steps
16
- azureml-train-restclients-hyperdrive
17
- azureml-telemetry
18
- azureml-tensorboard
19
- azureml-contrib-notebook
20
- azureml-explain-model
21
- azureml-interpret
22
- azureml-contrib-server
23
- azureml-contrib-services
24
- azureml-contrib-iot
25
- azureml-contrib-run
26
- azureml-datadrift
27
- azureml-widgets
28
- azureml-pipeline
29
- azureml-pipeline-core
30
- azureml-pipeline-steps
31
- azureml-contrib-pipeline-steps
32
- azureml-cli-common
33
- azureml-opendatasets
34
- azureml-accel-models
35
- azureml-mlflow
36
- azureml-contrib-functions
37
- azureml-contrib-dataset
38
- azureml-contrib-reinforcementlearning
39
- azureml-contrib-mir
40
- azureml-contrib-fairness
41
- azureml-contrib-aisc
42
- azureml-dataset-runtime
43
- azureml-synapse
44
- azureml-responsibleai
45
- azureml-automl-common-tools
1
+ a
2
+ z
3
+ u
4
+ r
5
+ e
6
+ m
7
+ l
8
+ -
9
+ c
10
+ o
11
+ r
12
+ e
@@ -49,8 +49,8 @@ except ImportError:
49
49
 
50
50
  module_logger = logging.getLogger(__name__)
51
51
 
52
- DEFAULT_CPU_IMAGE = _get_tagged_image("mcr.microsoft.com/azureml/openmpi4.1.0-ubuntu20.04")
53
- DEFAULT_GPU_IMAGE = _get_tagged_image("mcr.microsoft.com/azureml/openmpi4.1.0-cuda11.3-cudnn8-ubuntu20.04")
52
+ DEFAULT_CPU_IMAGE = _get_tagged_image("mcr.microsoft.com/azureml/openmpi4.1.0-ubuntu22.04")
53
+ DEFAULT_GPU_IMAGE = _get_tagged_image("mcr.microsoft.com/azureml/openmpi4.1.0-cuda11.8-cudnn8-ubuntu22.04")
54
54
  _DEFAULT_SHM_SIZE = "2g"
55
55
 
56
56
  _CONDA_DEPENDENCIES_FILE_NAME = "conda_dependencies.yml"
@@ -295,12 +295,8 @@ def _fetch_rslex_dataflow_yaml(workspace, fetch_id):
295
295
  fetch_id,
296
296
  "1")
297
297
  access_header = workspace._auth.get_authentication_header()
298
-
299
- def fetch_dataflow():
300
- return requests.get(request_url, headers=access_header)
301
-
302
- success, response = _make_request(fetch_dataflow)
303
- if success:
298
+ response = requests.get(request_url, headers=access_header)
299
+ if response.status_code == 200:
304
300
  return response.json()['legacyDataflow']
305
301
  raise response.raise_for_status()
306
302
 
@@ -775,7 +775,7 @@ class AbstractDataset(object):
775
775
  return FileDataset._create(definition=dataflow)
776
776
  except yaml.YAMLError as exc:
777
777
  _get_logger().warning('Failed to load mltable to dataflow with yaml error {}'.format(exc))
778
- raise UserErrorException("Unable to parse the YAML file. Ensure it follows proper YAML syntax.")
778
+ raise UserErrorException("MLTable yaml is invalid: {}".format(mltable_yml_dict))
779
779
  except UserErrorException as exc:
780
780
  _get_logger().warning('Failed to load mltable to dataset with exception {}'.format(exc))
781
781
  raise UserErrorException("MLTable yaml is invalid: {}".format(mltable_yml_dict))
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: azureml-core
3
- Version: 1.60.0
3
+ Version: 1.60.0.post1
4
4
  Summary: Azure Machine Learning core packages, modules, and classes
5
5
  Home-page: https://docs.microsoft.com/python/api/overview/azure/ml/?view=azure-ml-py
6
6
  Author: Microsoft Corp
@@ -30,9 +30,9 @@ Requires-Dist: argcomplete<4
30
30
  Requires-Dist: humanfriendly<11.0,>=4.7
31
31
  Requires-Dist: paramiko<4.0.0,>=2.0.8
32
32
  Requires-Dist: azure-mgmt-resource<=24.0.0,>=15.0.0
33
- Requires-Dist: azure-mgmt-containerregistry<11,>=8.2.0
33
+ Requires-Dist: azure-mgmt-containerregistry<14,>=8.2.0
34
34
  Requires-Dist: azure-mgmt-storage<=23.0.0,>=16.0.0
35
- Requires-Dist: azure-mgmt-keyvault<11.0.0,>=0.40.0
35
+ Requires-Dist: azure-mgmt-keyvault<12.0.0,>=0.40.0
36
36
  Requires-Dist: azure-mgmt-authorization<5,>=0.40.0
37
37
  Requires-Dist: azure-mgmt-network<=29.0.0
38
38
  Requires-Dist: azure-graphrbac<1.0.0,>=0.40.0
@@ -40,7 +40,7 @@ Requires-Dist: azure-common<2.0.0,>=1.1.12
40
40
  Requires-Dist: msrest<=0.7.1,>=0.5.1
41
41
  Requires-Dist: msrestazure<=0.7,>=0.4.33
42
42
  Requires-Dist: urllib3<3.0.0,>1.26.17
43
- Requires-Dist: packaging<=25.0,>=20.0
43
+ Requires-Dist: packaging<26.0,>=20.0
44
44
  Requires-Dist: python-dateutil<3.0.0,>=2.7.3
45
45
  Requires-Dist: ndg-httpsclient<=0.5.1
46
46
  Requires-Dist: SecretStorage<4.0.0
@@ -205,7 +205,7 @@ azureml/_compute/data/synapse_compute_template.json,sha256=IBWiGWT7Mmp-Z_Pw-zYx4
205
205
  azureml/_execution/__init__.py,sha256=2XIGQap-7lSF-4gfhUFtGzpx9FB7-iUVpW_2omvxiII,269
206
206
  azureml/_execution/_commands.py,sha256=ejWcDHBwSqDBa1zcW33F2PdpnfLJs4p-6qnyC9ikgrE,36803
207
207
  azureml/_file_utils/__init__.py,sha256=eyb8nF-WJiQdBlbj7M8WIFxvSPl2Y4qny2f4OQDGcwk,625
208
- azureml/_file_utils/file_utils.py,sha256=NO_lyXsKRZjqnZEP83gQH5selPqLbJtwc1p5jR4JcJU,20785
208
+ azureml/_file_utils/file_utils.py,sha256=s5fthmFjjCb5DBts50Vaom30Bz5BQQl9U_ExEbXnkdo,20707
209
209
  azureml/_file_utils/upload.py,sha256=W-IcpakJ1-TWtpnaeGpXXhijixmT9coHr4aaKFgTfnk,3626
210
210
  azureml/_history/__init__.py,sha256=2XIGQap-7lSF-4gfhUFtGzpx9FB7-iUVpW_2omvxiII,269
211
211
  azureml/_history/utils/__init__.py,sha256=JlCCObuOLZyNhIZlsoL51KtFxiY4xKIIzIRDBcdeu6Y,183
@@ -247,8 +247,8 @@ azureml/_model_management/data/mms_workspace_image_payload_template.json,sha256=
247
247
  azureml/_project/__init__.py,sha256=fXk56x7HrgsyVMGN5yuE08JN9x0JszBhsBNBX5NOneY,412
248
248
  azureml/_project/_commands.py,sha256=gUNeO7UoxFDplcm5dT68t2pAL_rTKRY8_0oZIS0O_ec,39864
249
249
  azureml/_project/_compute_target_commands.py,sha256=9tEnGkChnFAWvj1xAQHgFd39QOS_Vf2aZYT8DvOYh_w,13262
250
- azureml/_project/azureml_base_images.json,sha256=W2VOOeevE6phM7GZ_TXRJAlZSNB6wiLIXqNDKomWnl4,482
251
- azureml/_project/azureml_sdk_scope.txt,sha256=OM-LZGG5t7Vy3Pe9sg1Ll09U5BbVf7RDyEROVEk8-L0,1067
250
+ azureml/_project/azureml_base_images.json,sha256=sn-Ho--uL-K1pEy2Ialzsnl7YSxht2wQ8Y_F2xXzcjo,482
251
+ azureml/_project/azureml_sdk_scope.txt,sha256=5YqX2w4p-GU-a9jvGMr40N5SMLE6ewyJ_plbUmdjxxE,36
252
252
  azureml/_project/file_utilities.py,sha256=D_bjiEJLwUVLCn4gWIPmV-O8xqKJPJooJZNRgAsfSEc,2696
253
253
  azureml/_project/ignore_file.py,sha256=H19Yn2yngfAaK9Lfbz-uuHc-V-vqUhhKUv24IW_s2e8,3395
254
254
  azureml/_project/index_location.txt,sha256=y0QQZ0ezioStHt6IkKGm3Z5FCjS7oBAtBH4QkxQOHsQ,32
@@ -1182,7 +1182,7 @@ azureml/core/container_registry.py,sha256=PGwGMaZ0pEolaKv1s_wpAJjJoqB5krEfjbDmbk
1182
1182
  azureml/core/databricks.py,sha256=cbJT89_kc80Rfb5RoCHVttqVHI8_0HeXwSxC4fHXNQo,20593
1183
1183
  azureml/core/dataset.py,sha256=lWnN4kpkEStugePes-qhTqbkKl5y3W_HjMZNWk6FRL0,65849
1184
1184
  azureml/core/datastore.py,sha256=EMbZCkIJcYhi5cugUXS4c8dQxuEwO-Cx6BgznLYP_m0,44333
1185
- azureml/core/environment.py,sha256=YF8TWgsKRdzRUNISKx383SVQQNcdmPzgpZpDoePPk9w,79070
1185
+ azureml/core/environment.py,sha256=MiP_wj-i0E_mIfp5nc9Z0s8S_z1-Ltj9yyx7pAddsHw,79070
1186
1186
  azureml/core/experiment.py,sha256=yC3lVr97RoFXFZGNb1tQUdKJTlK_88jLBjKZXeLun3Q,24537
1187
1187
  azureml/core/keyvault.py,sha256=QchGc35DAimaWzdeEH-1wVatFgFFSWUgMNvtH5othIM,6602
1188
1188
  azureml/core/linked_service.py,sha256=zZEu28ooMIb9fUmuKtqfmNU25GwEvqKciGpDmVoqM5Y,9547
@@ -1236,12 +1236,12 @@ azureml/data/_dataset_factory_helper.py,sha256=2sCRg0MTFn0M2v4zx_DjhAibzqtzcSjwl
1236
1236
  azureml/data/_dataset_lineage.py,sha256=gPNMUl5_yi8T1lhO9E_dIwh6Y4KSCxI4goqmGp9v0AE,2370
1237
1237
  azureml/data/_dataset_persistence.py,sha256=c38XY9a3ZeT3BGKk63ID9RTnIxh2czBEFMxFtEZJauc,18588
1238
1238
  azureml/data/_dataset_profile_run.py,sha256=JM8_RLFBIY4vKcgHZUivz26yUc7mL-WLQyjl0nxv7Xk,3426
1239
- azureml/data/_dataset_rest_helper.py,sha256=QiN6fGMn03QZwnJTHqyIejZ6IYunzCtHO00iv5wNpwg,14103
1239
+ azureml/data/_dataset_rest_helper.py,sha256=9AL5Y0syCYNxpvAe9efKXQvgdH5XL5J4xrFcofCnaRU,14037
1240
1240
  azureml/data/_exception_handler.py,sha256=u3RNdn9SHZKZLOQe0rBLOEL9vrUZUCJ0fs4sHuaCvl0,736
1241
1241
  azureml/data/_loggerfactory.py,sha256=jb0yYWB9R0mdT2Clxh-qi5aeh221j1kVQRjA6r3iXn4,13215
1242
1242
  azureml/data/_partition_format.py,sha256=SaO7phTH3FSb9VwkJZZiESRWRyNwXqgJr7-vc2gDoqQ,5671
1243
1243
  azureml/data/_profile_run_script.py,sha256=zMI9psJSbiHJ7iHUz0tIlNOK4egUa20WJc2w3XS_y0Q,1253
1244
- azureml/data/abstract_dataset.py,sha256=k5hu12tUjHUdGZFTBsVN_s17zPUptJw-lCsksfwydk4,59975
1244
+ azureml/data/abstract_dataset.py,sha256=LTXNa9nUwmhBfnfjMgrDghWL3SorDD-UumT6wnDzOuk,59959
1245
1245
  azureml/data/abstract_datastore.py,sha256=9V3PzLUVa27_iWaa6BmcB2C51DInvTct7xM7oitdm4E,3907
1246
1246
  azureml/data/azure_data_lake_datastore.py,sha256=brZgWQ5yBDdS1J_Q3jZ9iLHzGZwoTpzwPXmCnGxDj_Y,16289
1247
1247
  azureml/data/azure_my_sql_datastore.py,sha256=4wZ-2lAK9KCmMD0Ek7Cwc429VMpMw7nHZSds3i8WxTs,3107
@@ -1323,9 +1323,9 @@ azureml/exceptions/__init__.py,sha256=wAB_C_TNpL8FK6GXeygupED6mG5IfSrLx_moV7NHIp
1323
1323
  azureml/exceptions/_azureml_exception.py,sha256=XxvMTrADJiTIHSn8DHj2fmyDUhYyBuVUqxYR3cuibz4,18989
1324
1324
  azureml/history/__init__.py,sha256=8U_yD6fMdk8Ok3Z-GO_ibddTgQEB-aY6BTT8t9aYGZw,274
1325
1325
  azureml/history/_tracking.py,sha256=IcZoVbHsOA01eQ3Ealnxe1YbNNnQi4LA5ccINB1cTrU,18541
1326
- azureml_core-1.60.0.dist-info/licenses/LICENSE.txt,sha256=GBoIyZ-6vJ4xjRc8U3wTw4EfkuaEdVTm_gbr1Nm8uDI,859
1327
- azureml_core-1.60.0.dist-info/METADATA,sha256=4OtGWJjdqa1dW6f9wH5YeaPhNQ5WnApKY79j15cKKDI,3389
1328
- azureml_core-1.60.0.dist-info/WHEEL,sha256=CmyFI0kx5cdEMTLiONQRbGQwjIoR1aIYB7eCAQ4KPJ0,91
1329
- azureml_core-1.60.0.dist-info/entry_points.txt,sha256=EKn4UdjSeleaw9lk1z12dZ7YK6tX4Ig6FYqaC2Uk8b8,154
1330
- azureml_core-1.60.0.dist-info/top_level.txt,sha256=ZOeEa0TAXo6i5wOjwBoqfIGEuxOcKuscGgNSpizqREY,8
1331
- azureml_core-1.60.0.dist-info/RECORD,,
1326
+ azureml_core-1.60.0.post1.dist-info/licenses/LICENSE.txt,sha256=GBoIyZ-6vJ4xjRc8U3wTw4EfkuaEdVTm_gbr1Nm8uDI,859
1327
+ azureml_core-1.60.0.post1.dist-info/METADATA,sha256=NzEOkcHYQwGBA1iEuSI7F3B4Jcjxo4E4vMZg0LrKhVk,3394
1328
+ azureml_core-1.60.0.post1.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
1329
+ azureml_core-1.60.0.post1.dist-info/entry_points.txt,sha256=EKn4UdjSeleaw9lk1z12dZ7YK6tX4Ig6FYqaC2Uk8b8,154
1330
+ azureml_core-1.60.0.post1.dist-info/top_level.txt,sha256=ZOeEa0TAXo6i5wOjwBoqfIGEuxOcKuscGgNSpizqREY,8
1331
+ azureml_core-1.60.0.post1.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (78.1.0)
2
+ Generator: setuptools (80.9.0)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5