ci: add support for building windows arm wheels#451
Merged
RazerM merged 2 commits intogetlogbook:developfrom Sep 16, 2025
Merged
ci: add support for building windows arm wheels#451RazerM merged 2 commits intogetlogbook:developfrom
RazerM merged 2 commits intogetlogbook:developfrom
Conversation
Collaborator
|
@Greenie0701 what is the value of |
Collaborator
|
I can't push to your branch, please apply this diff --git a/.github/workflows/wheel-builder.yml b/.github/workflows/wheel-builder.yml
index ce66e27..cb1c3d0 100644
--- a/.github/workflows/wheel-builder.yml
+++ b/.github/workflows/wheel-builder.yml
@@ -47,7 +47,12 @@ jobs:
strategy:
fail-fast: false
matrix:
- os: [ubuntu-24.04, ubuntu-24.04-arm, windows-2025, windows-11-arm, macos-15]
+ os:
+ - ubuntu-24.04
+ - ubuntu-24.04-arm
+ - windows-2025
+ - windows-11-arm
+ - macos-15
env:
CIBW_BEFORE_ALL_LINUX: "curl https://sh.rustup.rs -sSf | sh -s -- --default-toolchain stable -y" |
Contributor
Author
Hi please find the results for platform.machine() on Windows ARM64: |
charliermarsh
pushed a commit
to astral-sh/uv
that referenced
this pull request
Sep 17, 2025
…15921) <!-- Thank you for contributing to uv! To help us out with reviewing, please consider the following: - Does this pull request include a summary of the change? (See below.) - Does this pull request include a descriptive title? - Does this pull request include references to any relevant issues? --> ## Summary I'm back again after #14041, this time for `win_arm64`. I [asked a Windows on ARM user](getlogbook/logbook#451 (comment)) what the value of `platform.machine()` is, and it's `ARM64`. ## Test Plan Updated/added tests
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.

PR Description: