Skip to content

Commit 6d7d6e1

Browse files
igerberclaude
andcommitted
Fix CI: output wheel to dist directory
Maturin was building to rust/target/wheels/ but we were looking in target/wheels/. Use -o dist to put wheel in a known location. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
1 parent ceb7e0a commit 6d7d6e1

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/rust-test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,9 +80,9 @@ jobs:
8080
- name: Build and install with maturin
8181
run: |
8282
pip install maturin
83-
maturin build --release
83+
maturin build --release -o dist
8484
# --no-index ensures we install from local wheel, not PyPI
85-
pip install --no-index --find-links=target/wheels diff-diff
85+
pip install --no-index --find-links=dist diff-diff
8686
8787
- name: Verify Rust backend is available
8888
run: |

0 commit comments

Comments
 (0)