Skip to content

Commit 29a4f7a

Browse files
committed
feat: Update Rust extension build process to use wheel installation
1 parent f6f13de commit 29a4f7a

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

.github/workflows/tests.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,9 @@ jobs:
3939
run: |
4040
# Build the Rust extension using maturin
4141
pip install maturin
42-
maturin develop --release
42+
# Build the wheel and install it
43+
maturin build --release
44+
pip install target/wheels/*.whl
4345
4446
- name: Run Python tests
4547
run: |

0 commit comments

Comments
 (0)