Skip to content

Commit

Permalink
try workaround for python3
Browse files Browse the repository at this point in the history
python3 bin does not exist on newer container images
  • Loading branch information
tangowithfoxtrot authored Dec 7, 2023
1 parent 0b32f06 commit 85490df
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/build-python-wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -114,10 +114,13 @@ jobs:
with:
target: ${{ matrix.settings.target }}
args: --release --find-interpreter --sdist
container: quay.io/pypa/manylinux_2_28_x86_64:2023-11-20-745eb52
# container: quay.io/pypa/manylinux_2_28_x86_64:2023-11-20-745eb52
sccache: "true"
manylinux: "2_28" # https://github.com/pola-rs/polars/pull/12211
working-directory: ${{ github.workspace }}/languages/python
before-script-linux: |
# workaround 'No module named pip' with newer images
ln -s /usr/local/bin/python3.6 /usr/local/bin/python3
- name: Upload wheels
uses: actions/upload-artifact@a8a3f3ad30e3422c9c7b888a15615d19a852ae32 # v3.1.3
Expand Down

0 comments on commit 85490df

Please sign in to comment.