Skip to content

Commit

Permalink
Fix linux python and add path
Browse files Browse the repository at this point in the history
  • Loading branch information
paulannetts committed Oct 4, 2024
1 parent c1c8a16 commit 664cec2
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,8 @@ jobs:
RUSTFLAGS: -L espeak-ng/src/.libs
with:
target: ${{ matrix.platform.target }}
args: --release --out dist --interpreter python3.9 --interpreter python3.11
# only CPython and PyPy (which fail) so specify the full path to the CPythons
args: --release --out dist --interpreter /usr/local/bin/python3.9 --interpreter /usr/local/bin/python3.11
sccache: 'true'
manylinux: auto
- name: Upload wheels
Expand Down Expand Up @@ -79,6 +80,7 @@ jobs:
RUSTFLAGS: -L espeak-ng/src/.libs
with:
target: ${{ matrix.platform.target }}
# only CPython, and in different locations, so just specify the executable without path
args: --release --out dist --interpreter python3.9 --interpreter python3.11
sccache: 'true'
- name: Upload wheels
Expand Down

0 comments on commit 664cec2

Please sign in to comment.