Fangjun Kuang
Committed by GitHub

Fix publishing wheels (#1746)

... ... @@ -123,6 +123,6 @@ jobs:
TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
run: |
python3 -m pip install --upgrade pip
python3 -m pip install wheel twine setuptools
python3 -m pip install wheel twine==5.0.0 setuptools
twine upload ./wheelhouse/*.whl
... ...
... ... @@ -129,6 +129,6 @@ jobs:
TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
run: |
python3 -m pip install --upgrade pip
python3 -m pip install wheel twine setuptools
python3 -m pip install wheel twine==5.0.0 setuptools
twine upload ./wheelhouse/*.whl
... ...
... ... @@ -34,7 +34,7 @@ jobs:
- name: Install Python dependencies
shell: bash
run: |
pip install -U pip wheel setuptools twine
pip install -U pip wheel setuptools twine==5.0.0
- name: Build alsa-lib
shell: bash
... ...
... ... @@ -118,7 +118,7 @@ jobs:
shell: bash
run: |
python3 -m pip install --upgrade pip
python3 -m pip install wheel twine setuptools
python3 -m pip install wheel twine==5.0.0 setuptools
twine upload ./wheelhouse/*.whl
... ...
... ... @@ -95,6 +95,6 @@ jobs:
fi
python3 -m pip install $opts --upgrade pip
python3 -m pip install $opts wheel twine setuptools
python3 -m pip install $opts wheel twine==5.0.0 setuptools
twine upload ./wheelhouse/*.whl
... ...
... ... @@ -89,6 +89,6 @@ jobs:
TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
run: |
python3 -m pip install --break-system-packages --upgrade pip
python3 -m pip install --break-system-packages wheel twine setuptools
python3 -m pip install --break-system-packages wheel twine==5.0.0 setuptools
twine upload ./wheelhouse/*.whl
... ...
... ... @@ -110,6 +110,6 @@ jobs:
fi
python3 -m pip install $opts --upgrade pip
python3 -m pip install $opts wheel twine setuptools
python3 -m pip install $opts wheel twine==5.0.0 setuptools
twine upload ./wheelhouse/*.whl
... ...
... ... @@ -88,6 +88,6 @@ jobs:
TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
run: |
python3 -m pip install --upgrade pip
python3 -m pip install wheel twine setuptools
python3 -m pip install wheel twine==5.0.0 setuptools
twine upload ./wheelhouse/*.whl
... ...
... ... @@ -94,6 +94,6 @@ jobs:
TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
run: |
python3 -m pip install --upgrade pip
python3 -m pip install wheel twine setuptools
python3 -m pip install wheel twine==5.0.0 setuptools
twine upload ./wheelhouse/*.whl
... ...