Skip to content

Commit

Permalink
BUG: fixed pPython publish for Linux
Browse files Browse the repository at this point in the history
  • Loading branch information
saullocastro committed Feb 29, 2024
1 parent e8411c9 commit 63838be
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions .github/workflows/pythonpublish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,13 +44,11 @@ jobs:
run: |
python3 -m twine upload dist/*.whl
- name: Build Linux Python wheels, install cibuildwheel
if: matrix.runs-on == 'ubuntu-latest'
if: matrix.runs-on == 'ubuntu-latest' && matrix.python-version == '3.12'
run: |
python -m pip install cibuildwheel==2.16.5
- name: Build Linux Python wheels
if: matrix.runs-on == 'ubuntu-latest'
env:
CIBW_BUILD: ('cp%s-*' % matrix.python-version.replace('.', ''))
if: matrix.runs-on == 'ubuntu-latest' && matrix.python-version == '3.12'
run: |
python -m cibuildwheel --output-dir dist
- name: Publish Linux Python wheels
Expand Down

0 comments on commit 63838be

Please sign in to comment.