Thanks to visit codestin.com
Credit goes to github.com

Skip to content

fix: wheels #154

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 7 commits into from
Jun 16, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ concurrency:
cancel-in-progress: true

env:
duckdb-version: "1.2.2"
duckdb-version: "1.3.0"

jobs:
test:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:
workflow_dispatch:

env:
duckdb-version: "1.2.2"
duckdb-version: "1.3.0"

jobs:
deploy:
Expand Down
26 changes: 10 additions & 16 deletions .github/workflows/pypi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,20 +17,14 @@ jobs:
linux:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
platform:
- target: x86_64
manylinux: auto
- target: x86
manylinux: auto
- target: aarch64
manylinux: "2_28"
- target: armv7
manylinux: auto
- target: s390x
manylinux: auto
- target: ppc64le
manylinux: auto
target:
- x86_64
- aarch64
- armv7
- s390x
- ppc64le
steps:
- uses: actions/checkout@v4
with:
Expand All @@ -41,14 +35,14 @@ jobs:
- name: Build wheels
uses: PyO3/maturin-action@v1
with:
target: ${{ matrix.platform.target }}
target: ${{ matrix.target }}
args: --release --out dist -i 3.11 -F pyo3/abi3-py311 -F duckdb-bundled
sccache: ${{ !startsWith(github.ref, 'refs/tags/') }}
manylinux: ${{ matrix.platform.manylinux }}
manylinux: "2_28"
- name: Upload wheels
uses: actions/upload-artifact@v4
with:
name: wheels-linux-${{ matrix.platform.target }}
name: wheels-linux-${{ matrix.target }}
path: dist

musllinux:
Expand Down
5 changes: 0 additions & 5 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 0 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,3 @@ futures-util = "0.3.31"

[build-dependencies]
cargo-lock = "10"

[patch.crates-io]
duckdb = { git = "https://github.com/gadomski/duckdb-rs/", branch = "arrow-v55" }