We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 561fc68 commit 0e2a60dCopy full SHA for 0e2a60d
.github/workflows/pypi.yaml
@@ -100,13 +100,14 @@ jobs:
100
- name: Install libduckdb
101
run: |
102
wget https://github.com/duckdb/duckdb/releases/download/v1.2.0/libduckdb-osx-universal.zip
103
- unzip libduckdb-osx-universal.zip -d ./opt/duckdb
+ mkdir -p /opt/duckdb
104
+ unzip libduckdb-osx-universal.zip -d /opt/duckdb
105
- name: Install delocate
106
run: uv pip install --system delocate
107
- name: Build wheels
108
uses: PyO3/maturin-action@v1
109
env:
- DUCKDB_LIB_DIR: ./opt/duckdb
110
+ DUCKDB_LIB_DIR: /opt/duckdb
111
with:
112
target: ${{ matrix.platform.target }}
113
args: --release --out dist -i 3.10
0 commit comments