diff --git a/.github/workflows/Python.yml b/.github/workflows/Python.yml index b6cea0122ae..20eff234060 100644 --- a/.github/workflows/Python.yml +++ b/.github/workflows/Python.yml @@ -131,7 +131,7 @@ jobs: runs-on: ubuntu-20.04 strategy: matrix: - arch: [i686, x86_64, aarch64] + arch: [x86_64, aarch64] python_build: [cp37-*, cp38-*, cp39-*, cp310-*, cp311-*] isRelease: - ${{ startsWith(github.ref, 'refs/tags/v') || github.ref == 'refs/heads/main' }} @@ -144,15 +144,13 @@ jobs: python_build: 'cp39-*' - isRelease: false python_build: 'cp311-*' - - isRelease: false - arch: i686 - isRelease: false arch: aarch64 needs: manylinux-extensions-x64 env: CIBW_BUILD: ${{ matrix.python_build}} CIBW_SKIP: '*-musllinux_aarch64' - CIBW_ARCHS: ${{ matrix.arch == 'i686' && 'auto32' || matrix.arch == 'aarch64' && 'aarch64' || 'auto64' }} + CIBW_ARCHS: ${{ matrix.arch == 'aarch64' && 'aarch64' || 'auto64' }} SETUPTOOLS_SCM_NO_LOCAL: 'yes' PYTEST_TIMEOUT: '600' DUCKDB_BUILD_UNITY: 1