Skip to content

Commit 1d1991e

Browse files
authored
fix: wheels (#154)
1 parent 38640fd commit 1d1991e

File tree

5 files changed

+12
-26
lines changed

5 files changed

+12
-26
lines changed

.github/workflows/ci.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ concurrency:
1111
cancel-in-progress: true
1212

1313
env:
14-
duckdb-version: "1.2.2"
14+
duckdb-version: "1.3.0"
1515

1616
jobs:
1717
test:

.github/workflows/docs.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99
workflow_dispatch:
1010

1111
env:
12-
duckdb-version: "1.2.2"
12+
duckdb-version: "1.3.0"
1313

1414
jobs:
1515
deploy:

.github/workflows/pypi.yaml

Lines changed: 10 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -17,20 +17,14 @@ jobs:
1717
linux:
1818
runs-on: ubuntu-latest
1919
strategy:
20+
fail-fast: false
2021
matrix:
21-
platform:
22-
- target: x86_64
23-
manylinux: auto
24-
- target: x86
25-
manylinux: auto
26-
- target: aarch64
27-
manylinux: "2_28"
28-
- target: armv7
29-
manylinux: auto
30-
- target: s390x
31-
manylinux: auto
32-
- target: ppc64le
33-
manylinux: auto
22+
target:
23+
- x86_64
24+
- aarch64
25+
- armv7
26+
- s390x
27+
- ppc64le
3428
steps:
3529
- uses: actions/checkout@v4
3630
with:
@@ -41,14 +35,14 @@ jobs:
4135
- name: Build wheels
4236
uses: PyO3/maturin-action@v1
4337
with:
44-
target: ${{ matrix.platform.target }}
38+
target: ${{ matrix.target }}
4539
args: --release --out dist -i 3.11 -F pyo3/abi3-py311 -F duckdb-bundled
4640
sccache: ${{ !startsWith(github.ref, 'refs/tags/') }}
47-
manylinux: ${{ matrix.platform.manylinux }}
41+
manylinux: "2_28"
4842
- name: Upload wheels
4943
uses: actions/upload-artifact@v4
5044
with:
51-
name: wheels-linux-${{ matrix.platform.target }}
45+
name: wheels-linux-${{ matrix.target }}
5246
path: dist
5347

5448
musllinux:

Cargo.lock

Lines changed: 0 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,3 @@ futures-util = "0.3.31"
4949

5050
[build-dependencies]
5151
cargo-lock = "10"
52-
53-
[patch.crates-io]
54-
duckdb = { git = "https://github.com/gadomski/duckdb-rs/", branch = "arrow-v55" }

0 commit comments

Comments
 (0)