|
22 | 22 | - name: Install dependencies |
23 | 23 | run: | |
24 | 24 | python -m pip install --upgrade pip |
25 | | - pip install pytest hypothesis pandas mypy Cython==3.1.1 |
| 25 | + pip install pytest hypothesis pandas mypy Cython==3.1.3 |
26 | 26 |
|
27 | 27 | # The cythonized files allow installation from the sdist without cython |
28 | 28 | - name: Generate cython |
@@ -131,7 +131,7 @@ jobs: |
131 | 131 | fail-fast: false |
132 | 132 | matrix: |
133 | 133 | arch: [auto, ppc64le, s390x] |
134 | | - python_tag: ["cp39-*", "cp310-*", "cp311-*", "cp312-*", "cp313-*", "cp314-*"] |
| 134 | + python_tag: ["cp310-*", "cp311-*", "cp312-*", "cp313-*", "cp314-*"] |
135 | 135 | env: |
136 | 136 | CIBW_ARCHS_LINUX: ${{matrix.arch}} |
137 | 137 | CIBW_BUILD: ${{matrix.python_tag}} |
@@ -170,14 +170,16 @@ jobs: |
170 | 170 | path: ./wheelhouse/*.whl |
171 | 171 |
|
172 | 172 | build_wheels_linux_arm: |
173 | | - name: Build wheels on ubuntu-24.04-arm/aarch64/${{matrix.python_tag}} |
| 173 | + name: Build wheels on ubuntu-24.04-arm/${{matrix.arch}}/${{matrix.python_tag}} |
174 | 174 | needs: [build_sdist] |
175 | 175 | runs-on: ubuntu-24.04-arm |
176 | 176 | strategy: |
177 | 177 | fail-fast: false |
178 | 178 | matrix: |
179 | | - python_tag: ["cp39-*", "cp310-*", "cp311-*", "cp312-*", "cp313-*", "cp314-*"] |
| 179 | + arch: [aarch64, armv7l] |
| 180 | + python_tag: ["cp310-*", "cp311-*", "cp312-*", "cp313-*", "cp314-*"] |
180 | 181 | env: |
| 182 | + CIBW_ARCHS_LINUX: ${{matrix.arch}} |
181 | 183 | CIBW_BUILD: ${{matrix.python_tag}} |
182 | 184 | CIBW_TEST_SKIP: "{*_{aarch64,ppc64le,s390x},*musllinux_*}" |
183 | 185 | CIBW_BUILD_VERBOSITY: 3 |
|
0 commit comments