Fix building wheels for Python 3.7 (#1933)

This commit is contained in:
Fangjun Kuang
2025-02-27 13:02:46 +08:00
committed by GitHub
parent 337d5f7a80
commit 815ebac8f9
6 changed files with 19 additions and 5 deletions

View File

@@ -34,7 +34,11 @@ jobs:
- name: Install Python dependencies
shell: bash
run: |
pip install -U pip wheel setuptools twine==5.0.0
if [[ ${{ matrix.python-version }} == "3.7" ]]; then
pip install -U pip wheel setuptools twine
else
pip install -U pip wheel setuptools twine==5.0.0
fi
- name: Build alsa-lib
shell: bash