|
32 | 32 | - name: Build wheels (manylinux)
|
33 | 33 | uses: pypa/cibuildwheel@v2.17.0
|
34 | 34 | env:
|
35 |
| - CIBW_BEFORE_BUILD: "yum install -y flex bison libxml2-devel zlib-devel cairo-devel && pip install -U cmake pip wheel && python setup.py build_c_core" |
| 35 | + CIBW_BEFORE_BUILD: "yum install -y flex bison libxml2-devel zlib-devel cairo-devel && pip install -U cmake pip setuptools wheel && python setup.py build_c_core" |
36 | 36 | CIBW_BUILD: "*-manylinux_${{ matrix.wheel_arch }}"
|
37 | 37 | # Skip tests for Python 3.10 onwards because SciPy does not have
|
38 | 38 | # 32-bit wheels for Linux
|
|
41 | 41 | - name: Build wheels (musllinux)
|
42 | 42 | uses: pypa/cibuildwheel@v2.17.0
|
43 | 43 | env:
|
44 |
| - CIBW_BEFORE_BUILD: "apk add flex bison libxml2-dev zlib-dev cairo-dev && pip install -U cmake pip wheel && python setup.py build_c_core" |
| 44 | + CIBW_BEFORE_BUILD: "apk add flex bison libxml2-dev zlib-dev cairo-dev && pip install -U cmake pip setuptools wheel && python setup.py build_c_core" |
45 | 45 | CIBW_BUILD: "*-musllinux_${{ matrix.wheel_arch }}"
|
46 | 46 | CIBW_TEST_COMMAND: "cd {project} && pip install --prefer-binary '.[test-musl]' && python -m pytest -v tests"
|
47 | 47 |
|
|
66 | 66 | - name: Build wheels (manylinux)
|
67 | 67 | uses: pypa/cibuildwheel@v2.17.0
|
68 | 68 | env:
|
69 |
| - CIBW_BEFORE_BUILD: "yum install -y flex bison libxml2-devel zlib-devel cairo-devel && pip install -U cmake pip wheel && python setup.py build_c_core" |
| 69 | + CIBW_BEFORE_BUILD: "yum install -y flex bison libxml2-devel zlib-devel cairo-devel && pip install -U cmake pip setuptools wheel && python setup.py build_c_core" |
70 | 70 | CIBW_ARCHS_LINUX: aarch64
|
71 | 71 | CIBW_BUILD: "*-manylinux_aarch64"
|
72 | 72 |
|
|
91 | 91 | - name: Build wheels (musllinux)
|
92 | 92 | uses: pypa/cibuildwheel@v2.17.0
|
93 | 93 | env:
|
94 |
| - CIBW_BEFORE_BUILD: "apk add flex bison libxml2-dev zlib-dev cairo-dev && pip install -U cmake pip wheel && python setup.py build_c_core" |
| 94 | + CIBW_BEFORE_BUILD: "apk add flex bison libxml2-dev zlib-dev cairo-dev && pip install -U cmake pip setuptools wheel && python setup.py build_c_core" |
95 | 95 | CIBW_ARCHS_LINUX: aarch64
|
96 | 96 | CIBW_BUILD: "*-musllinux_aarch64"
|
97 | 97 | CIBW_TEST_COMMAND: "cd {project} && pip install --prefer-binary '.[test-musl]' && python -m pytest -v tests"
|
|
0 commit comments