Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions sdk/ml/azure-ai-ml/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
### Bugs Fixed
- MLClient.from_config can now find the default config.json on Compute Instance when running sample notebooks.
- Adjust registry experimental tags and imports to avoid warning printouts for unrelated operations.
- Prevent registering an already existing environment that references conda file.

### Other Changes

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -232,6 +232,7 @@ def _from_rest_object(cls, env_rest_object: EnvironmentVersionData) -> "Environm
if rest_env_version.conda_file:
translated_conda_file = yaml.safe_load(rest_env_version.conda_file)
environment.conda_file = translated_conda_file
environment._translated_conda_file = rest_env_version.conda_file

return environment

Expand Down