azureml-core 1.59.0.post1__py3-none-any.whl → 1.60.0__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.
- azureml/_base_sdk_common/_version.py +1 -1
- azureml/_file_utils/file_utils.py +2 -0
- azureml/_model_management/_util.py +1 -1
- azureml/_project/azureml_base_images.json +6 -7
- azureml/_project/azureml_sdk_scope.txt +45 -12
- azureml/_project/file_utilities.py +1 -1
- azureml/_vendor/azure_storage/blob/_encryption.py +13 -10
- azureml/core/conda_dependencies.py +1 -2
- azureml/data/_dataset_rest_helper.py +6 -2
- azureml/data/abstract_dataset.py +1 -1
- {azureml_core-1.59.0.post1.dist-info → azureml_core-1.60.0.dist-info}/METADATA +5 -4
- {azureml_core-1.59.0.post1.dist-info → azureml_core-1.60.0.dist-info}/RECORD +16 -16
- {azureml_core-1.59.0.post1.dist-info → azureml_core-1.60.0.dist-info}/WHEEL +1 -1
- {azureml_core-1.59.0.post1.dist-info → azureml_core-1.60.0.dist-info}/entry_points.txt +0 -0
- {azureml_core-1.59.0.post1.dist-info → azureml_core-1.60.0.dist-info/licenses}/LICENSE.txt +0 -0
- {azureml_core-1.59.0.post1.dist-info → azureml_core-1.60.0.dist-info}/top_level.txt +0 -0
@@ -1 +1 @@
|
|
1
|
-
ver = "1.
|
1
|
+
ver = "1.60.0"
|
@@ -99,6 +99,7 @@ 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)
|
102
103
|
parent_path = os.path.join(file_path, os.path.pardir)
|
103
104
|
parent_path = os.path.normpath(parent_path)
|
104
105
|
# CodeQL [SM01305] untrusted data is validated before being used in the path
|
@@ -208,6 +209,7 @@ def download_file(source_uri, path=None, max_retries=5, stream=True, protocol="h
|
|
208
209
|
module_logger.debug('Output file path is {}, the file was not downloaded.'.format(path))
|
209
210
|
return
|
210
211
|
path = os.path.normpath(path)
|
212
|
+
path = os.path.abspath(path)
|
211
213
|
# download using BlobClient
|
212
214
|
if is_source_uri_matches_storage_blob(source_uri):
|
213
215
|
sas_token, account_name, endpoint_suffix, container_name, blob_name = get_block_blob_service_credentials(
|
@@ -208,10 +208,10 @@ def wrap_execution_script(execution_script, schema_file, dependencies, log_aml_d
|
|
208
208
|
new_script_loc = tempfile.mkstemp(suffix='.py')[1]
|
209
209
|
execution_script = os.path.normpath(execution_script)
|
210
210
|
# CodeQL [SM01305] untrusted data is validated before being used in the path
|
211
|
-
dependencies.append(execution_script)
|
212
211
|
if not os.path.exists(execution_script):
|
213
212
|
raise WebserviceException('Path to execution script {} does not exist.'.format(execution_script),
|
214
213
|
logger=module_logger)
|
214
|
+
dependencies.append(execution_script)
|
215
215
|
if not schema_file:
|
216
216
|
schema_file = ''
|
217
217
|
else:
|
@@ -1,9 +1,8 @@
|
|
1
1
|
{
|
2
|
-
"mcr.microsoft.com/azureml/openmpi4.1.0-cuda11.
|
3
|
-
"mcr.microsoft.com/azureml/openmpi4.1.0-
|
4
|
-
"mcr.microsoft.com/azureml/
|
5
|
-
"mcr.microsoft.com/azureml/
|
6
|
-
"mcr.microsoft.com/azureml/
|
7
|
-
"mcr.microsoft.com/azureml/
|
8
|
-
"mcr.microsoft.com/azureml/openmpi4.1.0-ubuntu22.04": "20250121.v1"
|
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"
|
9
8
|
}
|
@@ -1,12 +1,45 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
-
|
9
|
-
|
10
|
-
|
11
|
-
|
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
|
@@ -18,7 +18,7 @@ def create_directory(path, set_hidden=False):
|
|
18
18
|
|
19
19
|
:rtype None
|
20
20
|
"""
|
21
|
-
path = os.path.normpath(path)
|
21
|
+
path = os.path.abspath(os.path.normpath(path))
|
22
22
|
# CodeQL [SM01305] untrusted data is validated before being used in the path
|
23
23
|
if os.path.exists(path):
|
24
24
|
return
|
@@ -245,20 +245,23 @@ class GCMBlobEncryptionStream:
|
|
245
245
|
|
246
246
|
def _encrypt_region(self, data: bytes) -> bytes:
|
247
247
|
"""
|
248
|
-
|
249
|
-
|
250
|
-
|
251
|
-
:param bytes data: The data to encrypt.
|
248
|
+
Encrypt the given region of data using AES-CBC.
|
249
|
+
The result includes the IV + ciphertext.
|
252
250
|
"""
|
253
|
-
#
|
254
|
-
|
251
|
+
# Generate IV (must be random)
|
252
|
+
iv = os.urandom(16)
|
255
253
|
|
256
|
-
|
254
|
+
# Create cipher object
|
255
|
+
cipher = Cipher(AES(self.content_encryption_key), CBC(iv), backend=default_backend())
|
256
|
+
encryptor = cipher.encryptor()
|
257
257
|
|
258
|
-
#
|
259
|
-
|
260
|
-
|
258
|
+
# Pad data to block size
|
259
|
+
padder = PKCS7(128).padder()
|
260
|
+
padded_data = padder.update(data) + padder.finalize()
|
261
261
|
|
262
|
+
# Encrypt data
|
263
|
+
ciphertext = encryptor.update(padded_data) + encryptor.finalize()
|
264
|
+
return iv + ciphertext
|
262
265
|
|
263
266
|
def is_encryption_v2(encryption_data: Optional[_EncryptionData]) -> bool:
|
264
267
|
"""
|
@@ -176,8 +176,7 @@ class CondaDependencies(object):
|
|
176
176
|
|
177
177
|
# set index url to sdk origin pypi index if not specified
|
178
178
|
if pip_indexurl or _sdk_origin_url != DEFAULT_SDK_ORIGIN:
|
179
|
-
cd.
|
180
|
-
"--index-url {}".format(pip_indexurl if pip_indexurl else _sdk_origin_url))
|
179
|
+
cd.set_pip_option("--find-links {}".format(pip_indexurl if pip_indexurl else _sdk_origin_url))
|
181
180
|
cd.set_pip_option("--extra-index-url {}".format(DEFAULT_SDK_ORIGIN))
|
182
181
|
|
183
182
|
cd.set_python_version(python_version)
|
@@ -295,8 +295,12 @@ 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
|
-
|
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:
|
300
304
|
return response.json()['legacyDataflow']
|
301
305
|
raise response.raise_for_status()
|
302
306
|
|
azureml/data/abstract_dataset.py
CHANGED
@@ -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("
|
778
|
+
raise UserErrorException("Unable to parse the YAML file. Ensure it follows proper YAML syntax.")
|
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
|
-
Metadata-Version: 2.
|
1
|
+
Metadata-Version: 2.4
|
2
2
|
Name: azureml-core
|
3
|
-
Version: 1.
|
3
|
+
Version: 1.60.0
|
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
|
@@ -31,7 +31,7 @@ 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
33
|
Requires-Dist: azure-mgmt-containerregistry<11,>=8.2.0
|
34
|
-
Requires-Dist: azure-mgmt-storage<=
|
34
|
+
Requires-Dist: azure-mgmt-storage<=23.0.0,>=16.0.0
|
35
35
|
Requires-Dist: azure-mgmt-keyvault<11.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
|
@@ -49,7 +49,7 @@ Requires-Dist: contextlib2<22.0.0
|
|
49
49
|
Requires-Dist: docker<8.0.0
|
50
50
|
Requires-Dist: PyJWT<3.0.0
|
51
51
|
Requires-Dist: adal<=1.2.7,>=1.2.0
|
52
|
-
Requires-Dist: pyopenssl<
|
52
|
+
Requires-Dist: pyopenssl<26.0.0
|
53
53
|
Requires-Dist: jmespath<2.0.0
|
54
54
|
Dynamic: author
|
55
55
|
Dynamic: classifier
|
@@ -57,6 +57,7 @@ Dynamic: description
|
|
57
57
|
Dynamic: description-content-type
|
58
58
|
Dynamic: home-page
|
59
59
|
Dynamic: license
|
60
|
+
Dynamic: license-file
|
60
61
|
Dynamic: requires-dist
|
61
62
|
Dynamic: requires-python
|
62
63
|
Dynamic: summary
|
@@ -8,7 +8,7 @@ azureml/_async/worker_pool.py,sha256=L0wPG7JskcjmgCfcIruIyk71pRkL0HbcTritBdcC2rk
|
|
8
8
|
azureml/_base_sdk_common/__init__.py,sha256=E04eAB1KyV8xIhdRtGDe2IaYMteRQ194h7Pem5ic8Kg,356
|
9
9
|
azureml/_base_sdk_common/_arcadia_token_wrapper.py,sha256=4dMGzRM6pdQiz7BI6PvcW2_pjs3t7lsZck39AiOvmbw,2112
|
10
10
|
azureml/_base_sdk_common/_docstring_wrapper.py,sha256=haPzBtUqTgx4gipecCMggR_pHBaMiUmlkZj-fUHo1do,3390
|
11
|
-
azureml/_base_sdk_common/_version.py,sha256=
|
11
|
+
azureml/_base_sdk_common/_version.py,sha256=k3UgjYQbQQ2ZZJnN7Vtmm85tei5Me7rmP48rD5ca8WA,16
|
12
12
|
azureml/_base_sdk_common/abstract_run_config_element.py,sha256=TTTVNWr17ss1AuWkKPFXgVzcGQt11QlEJ2weIsIZ5qc,1190
|
13
13
|
azureml/_base_sdk_common/auth_utils.py,sha256=c7jiAw_u70xU7HymEgtiGvqch8OqfoGzLW6Mdjuo9Lo,2512
|
14
14
|
azureml/_base_sdk_common/common.py,sha256=oBQrzsb56zjFhLD1OMIfNXNLeVb_wdinDtOebwk9qLI,27836
|
@@ -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=
|
208
|
+
azureml/_file_utils/file_utils.py,sha256=NO_lyXsKRZjqnZEP83gQH5selPqLbJtwc1p5jR4JcJU,20785
|
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
|
@@ -232,7 +232,7 @@ azureml/_model_converters/_utils.py,sha256=hSyO7DX0yvA51M9RGD4FeFSYMvXDWpFr_8vKf
|
|
232
232
|
azureml/_model_converters/model_convert_operation.py,sha256=be45MnV-Jt-f4ebM55b6rCb-DIB0SKvs5kruXwS7SUM,8127
|
233
233
|
azureml/_model_management/__init__.py,sha256=2XIGQap-7lSF-4gfhUFtGzpx9FB7-iUVpW_2omvxiII,269
|
234
234
|
azureml/_model_management/_constants.py,sha256=KfgB8azTm16_DA1ADfTwNXTTXT1m9G5Xnepxy5uSNws,3687
|
235
|
-
azureml/_model_management/_util.py,sha256=
|
235
|
+
azureml/_model_management/_util.py,sha256=_chutPsnnaTHmSDjksVucnFURp13Nygp0c2kxSedpjo,64470
|
236
236
|
azureml/_model_management/data/aci_service_payload_template.json,sha256=w_FE0vBE6NHC8FmP72k6YhBIPAKwcZda1CArElpPCmk,465
|
237
237
|
azureml/_model_management/data/aci_specific_service_create_payload_template.json,sha256=QbJ18ayQSLM642iWfjBef9Ra9qr4nOPchvnDptXya9o,371
|
238
238
|
azureml/_model_management/data/aks_service_payload_template.json,sha256=HJq9KXkVG1vG7l740CwlGHKBHI--dfUydAh4QEdWTcs,1091
|
@@ -247,9 +247,9 @@ 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=
|
251
|
-
azureml/_project/azureml_sdk_scope.txt,sha256=
|
252
|
-
azureml/_project/file_utilities.py,sha256=
|
250
|
+
azureml/_project/azureml_base_images.json,sha256=W2VOOeevE6phM7GZ_TXRJAlZSNB6wiLIXqNDKomWnl4,482
|
251
|
+
azureml/_project/azureml_sdk_scope.txt,sha256=OM-LZGG5t7Vy3Pe9sg1Ll09U5BbVf7RDyEROVEk8-L0,1067
|
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
|
255
255
|
azureml/_project/mappings.py,sha256=-z_Qfo0EvjqyTpvhR7pv3c8XsPzKmLNQYuQbCz8L_-s,3054
|
@@ -992,7 +992,7 @@ azureml/_vendor/azure_storage/blob/_blob_service_client.py,sha256=Gf0NcVe8gYb7tR
|
|
992
992
|
azureml/_vendor/azure_storage/blob/_container_client.py,sha256=cFMkWy_9P9TKqiBaDpWKqpu6uhZKaBOLlOIC7kNvJtI,83005
|
993
993
|
azureml/_vendor/azure_storage/blob/_deserialize.py,sha256=RHJNhg33YmXeREeo6qSnKvCLgADsaeRP06PeVfcL-Jg,8234
|
994
994
|
azureml/_vendor/azure_storage/blob/_download.py,sha256=cLQWcrpzuAV0Fj91LSX-3Hg_-l9AeRPAO9STC0ku7kE,28172
|
995
|
-
azureml/_vendor/azure_storage/blob/_encryption.py,sha256
|
995
|
+
azureml/_vendor/azure_storage/blob/_encryption.py,sha256=-O0OaF9s1GMlqWfeCH-HSUehw0fHuqXiBWa_Z5ybJ2g,42116
|
996
996
|
azureml/_vendor/azure_storage/blob/_lease.py,sha256=qt1KPJWoJHMSaWctZtDz4Zw9OBGMk3WcVrqQLE8bmmQ,16970
|
997
997
|
azureml/_vendor/azure_storage/blob/_list_blobs_helper.py,sha256=UlgLkI5qLpgAWUnDLdqo_tv5nv6bzSGCzWID3NRfAyY,11320
|
998
998
|
azureml/_vendor/azure_storage/blob/_models.py,sha256=uj-AQV34CiWwFqWirwqwsygijrKrWVn35xsRnfI07Fs,58622
|
@@ -1177,7 +1177,7 @@ azureml/core/_portal.py,sha256=MvzYl-0m1M9nmorgWl7gbpHtQhkf5bL92Ul9H0pB2ds,5987
|
|
1177
1177
|
azureml/core/_serialization_utils.py,sha256=MnNB6Q62Wv1T1F_obbyVczkGmw1_TqgpruaSf80CWK4,12059
|
1178
1178
|
azureml/core/authentication.py,sha256=HhqjBJoTYEzaTwe9ijjHaouShy-kQBlKIH2991uqYTw,107477
|
1179
1179
|
azureml/core/compute_target.py,sha256=u2Xbfz6qA0jKbWWVrhry_DmBmXu2yYbA-hmWUsLOAFo,17909
|
1180
|
-
azureml/core/conda_dependencies.py,sha256=
|
1180
|
+
azureml/core/conda_dependencies.py,sha256=Y29s0lwU9czj94oSLkTPwN3IajjUtTeXZLRTwgtbc2o,41334
|
1181
1181
|
azureml/core/container_registry.py,sha256=PGwGMaZ0pEolaKv1s_wpAJjJoqB5krEfjbDmbkrvv5Q,2422
|
1182
1182
|
azureml/core/databricks.py,sha256=cbJT89_kc80Rfb5RoCHVttqVHI8_0HeXwSxC4fHXNQo,20593
|
1183
1183
|
azureml/core/dataset.py,sha256=lWnN4kpkEStugePes-qhTqbkKl5y3W_HjMZNWk6FRL0,65849
|
@@ -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=
|
1239
|
+
azureml/data/_dataset_rest_helper.py,sha256=QiN6fGMn03QZwnJTHqyIejZ6IYunzCtHO00iv5wNpwg,14103
|
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=
|
1244
|
+
azureml/data/abstract_dataset.py,sha256=k5hu12tUjHUdGZFTBsVN_s17zPUptJw-lCsksfwydk4,59975
|
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.
|
1327
|
-
azureml_core-1.
|
1328
|
-
azureml_core-1.
|
1329
|
-
azureml_core-1.
|
1330
|
-
azureml_core-1.
|
1331
|
-
azureml_core-1.
|
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,,
|
File without changes
|
File without changes
|
File without changes
|