We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 93b70c6 commit de9b8d1Copy full SHA for de9b8d1
1 file changed
.github/workflows/python.yml
@@ -66,6 +66,9 @@ jobs:
66
- name: Build wheels
67
uses: PyO3/maturin-action@v1
68
with:
69
+ before-script-linux: |
70
+ rustup show active-toolchain
71
+ rustc --version
72
target: ${{ matrix.platform.target }}
73
args: --release --out dist --find-interpreter
74
sccache: ${{ !startsWith(github.ref, 'refs/tags/') }}
@@ -80,7 +83,14 @@ jobs:
80
83
shell: bash
81
84
run: |
82
85
set -e
86
87
88
rustup install --profile=minimal stable
89
90
91
+ rustup default stable
92
93
94
python3 -m venv .venv
95
source .venv/bin/activate
96
pip install reclass-rs --find-links dist --force-reinstall
0 commit comments