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 2a65802 commit 0bbc69cCopy full SHA for 0bbc69c
.github/workflows/pypi.yaml
@@ -104,14 +104,14 @@ jobs:
104
- name: Install libduckdb
105
run: |
106
wget https://github.com/duckdb/duckdb/releases/download/v1.2.0/libduckdb-osx-universal.zip
107
- mkdir -p /opt/duckdb
108
- unzip libduckdb-osx-universal.zip -d /opt/duckdb
+ mkdir -p ./opt/duckdb
+ unzip libduckdb-osx-universal.zip -d ./opt/duckdb
109
- name: Install delocate
110
run: uv pip install --system delocate
111
- name: Build wheels
112
uses: PyO3/maturin-action@v1
113
env:
114
- DUCKDB_LIB_DIR: /opt/duckdb
+ DUCKDB_LIB_DIR: ./opt/duckdb
115
with:
116
target: ${{ matrix.platform.target }}
117
args: --release --out dist -i 3.10
0 commit comments