Skip to content

Commit 0bbc69c

Browse files
committed
fix: macos not super user?
1 parent 2a65802 commit 0bbc69c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/pypi.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -104,14 +104,14 @@ jobs:
104104
- name: Install libduckdb
105105
run: |
106106
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
107+
mkdir -p ./opt/duckdb
108+
unzip libduckdb-osx-universal.zip -d ./opt/duckdb
109109
- name: Install delocate
110110
run: uv pip install --system delocate
111111
- name: Build wheels
112112
uses: PyO3/maturin-action@v1
113113
env:
114-
DUCKDB_LIB_DIR: /opt/duckdb
114+
DUCKDB_LIB_DIR: ./opt/duckdb
115115
with:
116116
target: ${{ matrix.platform.target }}
117117
args: --release --out dist -i 3.10

0 commit comments

Comments
 (0)