Skip to content

Commit 3f39d12

Browse files
committed
uv の Python バージョンを 3.13 に設定し、maturin のヘルプを表示するコマンドを追加する
1 parent 87978bf commit 3f39d12

File tree

1 file changed

+11
-4
lines changed

1 file changed

+11
-4
lines changed

.github/workflows/pypi-publish.yml

Lines changed: 11 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -55,29 +55,36 @@ jobs:
5555
5656
- name: Install uv
5757
uses: astral-sh/setup-uv@v6
58+
with:
59+
python-version: 3.13
5860

5961
- run: uv tool install maturin
6062

63+
- run: uv run marturin --help
64+
6165
- name: Build wheel with Maturin
6266
run: uv run maturin build --release --compatibility pypi --no-default-features
6367

68+
- run: ls -la target/wheels/
69+
6470
- name: Upload wheels
6571
uses: actions/upload-artifact@v5
6672
with:
6773
name: wheels-${{ matrix.runner }}-${{ matrix.arch }}
6874
path: target/wheels/*.whl
6975

7076
macos-wheel:
77+
if: false
7178
name: Build macOS wheels
7279
strategy:
7380
matrix:
7481
include:
7582
- runner: macos-26
7683
arch: arm64
77-
# - runner: macos-15
78-
# arch: arm64
79-
# - runner: macos-14
80-
# arch: arm64
84+
- runner: macos-15
85+
arch: arm64
86+
- runner: macos-14
87+
arch: arm64
8188
runs-on: ${{ matrix.runner }}
8289
timeout-minutes: 30
8390
steps:

0 commit comments

Comments
 (0)