Merged
Conversation
Contributor
Author
|
I uploaded the new wheels to the ORT-NIGHTLY feed. It was good. |
baijumeswani
approved these changes
Sep 4, 2025
snnn
pushed a commit
that referenced
this pull request
Sep 8, 2025
Currently our macOS wheels use Metadata-Version 2.1 Currently our Windows and Linux wheels use Metadata-Version 2.4 Because they use different versions of the ["wheel"](https://pypi.org/project/wheel/#history) package that is used for generating the wheel files. When publishing the macOS wheels to Azure DevOps feed, I got the following error: ``` ERROR: Failed to upload onnxruntime-1.23.0.dev20250903002-cp310-cp310-macosx_13_0_universal2.whl. Return code: 1 STDOUT: Uploading distributions to https://aiinfra.pkgs.visualstudio.com/PublicPackages/_packaging/ORT-Nightly/pypi /upload ERROR InvalidDistribution: Invalid distribution metadata: dynamic introduced in metadata version 2.2, not 2.1 ``` This PR makes them consistent. (cherry picked from commit 4e2699f)
snnn
pushed a commit
that referenced
this pull request
Sep 8, 2025
Currently our macOS wheels use Metadata-Version 2.1 Currently our Windows and Linux wheels use Metadata-Version 2.4 Because they use different versions of the ["wheel"](https://pypi.org/project/wheel/#history) package that is used for generating the wheel files. When publishing the macOS wheels to Azure DevOps feed, I got the following error: ``` ERROR: Failed to upload onnxruntime-1.23.0.dev20250903002-cp310-cp310-macosx_13_0_universal2.whl. Return code: 1 STDOUT: Uploading distributions to https://aiinfra.pkgs.visualstudio.com/PublicPackages/_packaging/ORT-Nightly/pypi /upload ERROR InvalidDistribution: Invalid distribution metadata: dynamic introduced in metadata version 2.2, not 2.1 ``` This PR makes them consistent. (cherry picked from commit 4e2699f)
snnn
pushed a commit
that referenced
this pull request
Sep 8, 2025
This PR cherry-picks the following PRs to the rel-1.23.0 branch: * #25938 * #25957 * #25960 * #25968 * #25971 --------- Co-authored-by: Dmitri Smirnov <yuslepukhin@users.noreply.github.com> Co-authored-by: Adrian Lizarraga <adlizarraga@microsoft.com> Co-authored-by: Hariharan Seshadri <shariharan91@gmail.com>
Contributor
Author
|
This PR has been cherry-picked into the |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Currently our macOS wheels use Metadata-Version 2.1
Currently our Windows and Linux wheels use Metadata-Version 2.4
Because they use different versions of the "wheel" package that is used for generating the wheel files.
When publishing the macOS wheels to Azure DevOps feed, I got the following error:
This PR makes them consistent.