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
4 changes: 4 additions & 0 deletions scripts/azureml-assets/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
## 1.17.0 (Unreleased)
### 🚀 New Features

## 1.16.83 (2025-05-22)
### 🚀 New Features
- [#4208](https://github.com/Azure/azureml-assets/pull/4208) Fix for python 3.9 - remove union typing

## 1.16.82 (2025-05-22)
### 🚀 New Features
- [#4206](https://github.com/Azure/azureml-assets/pull/4206) Print azcopy log if output_level==default
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ def _onerror(func, path, exc_info):
raise


def run_cmd(cmd, cwd: Path | None = None, env: dict | None = None) -> int:
def run_cmd(cmd, cwd: Path = None, env: dict = None) -> int:
Comment thread
vizhur marked this conversation as resolved.
"""Run the command and returns the result."""
logger.print(cmd)
result = subprocess.run(
Expand Down
2 changes: 1 addition & 1 deletion scripts/azureml-assets/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

setup(
name="azureml-assets",
version="1.16.82",
version="1.16.83",
description="Utilities for publishing assets to Azure Machine Learning system registries.",
author="Microsoft Corp",
packages=find_packages(),
Expand Down
Loading