Skip to content

Commit

Permalink
No longer build i686 wheels for Python
Browse files Browse the repository at this point in the history
  • Loading branch information
Mytherin authored and carlopi committed Sep 26, 2023
1 parent af3c38c commit 59a7c0d
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions .github/workflows/Python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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' }}
Expand All @@ -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
Expand Down

0 comments on commit 59a7c0d

Please sign in to comment.