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 577c7d6 commit 5c66a42Copy full SHA for 5c66a42
.github/workflows/pypi.yaml
@@ -101,13 +101,13 @@ jobs:
101
- name: Install libduckdb
102
run: |
103
wget https://github.com/duckdb/duckdb/releases/download/v1.2.0/libduckdb-osx-universal.zip
104
- unzip libduckdb-osx-universal.zip -d /opt/duckdb
+ 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:
110
- DUCKDB_LIB_DIR: /opt/duckdb
+ DUCKDB_LIB_DIR: ./opt/duckdb
111
with:
112
target: ${{ matrix.platform.target }}
113
args: --release --out dist -i 3.10
0 commit comments