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 d6b3c48 commit 4b71d44Copy full SHA for 4b71d44
.github/workflows/pypi.yaml
@@ -96,12 +96,18 @@ jobs:
96
steps:
97
- uses: actions/checkout@v4
98
- uses: astral-sh/setup-uv@v5
99
- - name: Install Pythons
+ - name: Install Python
100
run: uv python install 3.10
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
105
- name: Install delocate
- run: uv pip 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
111
with:
112
target: ${{ matrix.platform.target }}
113
args: --release --out dist -i 3.10
0 commit comments