We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 864f6da commit 42b7ecbCopy full SHA for 42b7ecb
1 file changed
.github/workflows/release.yaml
@@ -59,6 +59,15 @@ jobs:
59
- uses: Swatinem/rust-cache@v2
60
with:
61
prefix-key: "v0-rust"
62
+ - name: Set up Python
63
+ uses: actions/setup-python@v5
64
+ with:
65
+ python-version: '3.12'
66
+ - name: Create virtual environment and install maturin
67
+ run: |
68
+ python -m venv .venv
69
+ source .venv/bin/activate
70
+ pip install maturin
71
- name: Build Linux binary (maturin)
72
if: matrix.platform.os_name == 'Linux-x86_64'
73
run: |
0 commit comments