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
9 changes: 8 additions & 1 deletion .pipelines/modelkit-official-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,14 @@ extends:
artifactFeeds: 'windows.ai.toolkit/Modelkit'
displayName: 'Authenticate pip with Azure Artifacts'

- script: python -m pip install --upgrade build twine packaging
# PINNED ON PURPOSE — do NOT relax to unpinned/--upgrade.
# An unpinned toolchain lets a third-party release break the
# release build on publish day. build 1.5.1 did exactly that:
# its isolated-env pip invocation fails inside this container
# with "FileNotFoundError: [WinError 2]" while resolving the
# user cache dir from the registry. These are the versions that
# produced the v0.2.0 release. Bump deliberately, never silently.
- script: python -m pip install build==1.5.0 twine==6.2.0 packaging==26.2
displayName: 'Install build tools'

# Build sdist BEFORE iKey injection so the source archive
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ requires = [ "setuptools>=61", "wheel" ]

[project]
name = "winml-cli"
version = "0.2.0"
version = "0.3.0"
description = "Accelerate Model Deployment on WinML"
readme = "README.md"
keywords = [ "onnx", "winml" ]
Expand Down
2 changes: 1 addition & 1 deletion uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading