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 837b408 commit 6864396Copy full SHA for 6864396
.github/workflows/pypi.yaml
@@ -70,15 +70,15 @@ jobs:
70
run: |
71
wget https://github.com/duckdb/duckdb/releases/download/v${DUCKDB_VERSION}/libduckdb-osx-universal.zip
72
mkdir -p ./opt/duckdb
73
- unzip libduckdb-osx-universal.zip -d ${GITHUB_WORKSPACE}/opt/duckdb
+ unzip libduckdb-osx-universal.zip -d ${{ github.workspace }}/opt/duckdb
74
- name: Install delocate
75
76
uv venv
77
uv pip install delocate
78
- name: Build wheels
79
uses: PyO3/maturin-action@v1
80
env:
81
- DUCKDB_LIB_DIR: ${GITHUB_WORKSPACE}/opt/duckdb
+ DUCKDB_LIB_DIR: ${{ github.workspace }}/opt/duckdb
82
with:
83
target: ${{ matrix.platform.target }}
84
args: --release --out dist -i 3.10
0 commit comments