Skip to content

Commit 13c93ca

Browse files
committed
fix: use bash shell for glob expansion on Windows
Force bash shell which properly expands *.whl glob pattern. maturin develop requires a virtualenv which CI doesn't have.
1 parent 0844529 commit 13c93ca

2 files changed

Lines changed: 384 additions & 183 deletions

File tree

.github/workflows/pythonpackage.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,10 @@ jobs:
3535
pip install maturin pytest pytest-benchmark
3636
3737
- name: Build and install with maturin
38-
run: maturin develop --release
38+
shell: bash
39+
run: |
40+
maturin build --release
41+
pip install target/wheels/*.whl
3942
4043
- name: Run tests
4144
run: pytest -vls test/

0 commit comments

Comments
 (0)