Skip to content

Commit

Permalink
Merge pull request duckdb#9101 from carlopi/i686
Browse files Browse the repository at this point in the history
No longer build i686 wheels for Python /2
  • Loading branch information
hannes authored Sep 26, 2023
2 parents af3c38c + 946c60a commit 0d84ccf
Show file tree
Hide file tree
Showing 2 changed files with 3 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
1 change: 1 addition & 0 deletions tools/pythonpkg/tests/fast/api/test_read_csv.py
Original file line number Diff line number Diff line change
Expand Up @@ -398,6 +398,7 @@ def test_filelike_none(self, duckdb_cursor):
with pytest.raises(ValueError, match="Can not read from a non file-like object"):
res = duckdb_cursor.read_csv(obj, header=True).fetchall()

@pytest.mark.skip(reason="depends on garbage collector behaviour, and sporadically breaks in CI")
def test_internal_object_filesystem_cleanup(self, duckdb_cursor):
_ = pytest.importorskip("fsspec")

Expand Down

0 comments on commit 0d84ccf

Please sign in to comment.