Skip to content

Commit 4d6b54c

Browse files
committed
Revert "fix: use uv to help build wheels"
This reverts commit aec6f48.
1 parent aec6f48 commit 4d6b54c

File tree

2 files changed

+4
-11
lines changed

2 files changed

+4
-11
lines changed

.github/workflows/docs.yaml

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,6 @@ jobs:
2020
fetch-depth: 0 # to get gh-pages
2121
- uses: astral-sh/setup-uv@v3
2222
- uses: Swatinem/rust-cache@v2
23-
- name: Download libduckdb (ubuntu)
24-
run: |
25-
wget https://github.com/duckdb/duckdb/releases/download/v1.1.3/libduckdb-linux-amd64.zip
26-
unzip libduckdb-linux-amd64.zip -d libduckdb
27-
echo "LD_LIBRARY_PATH=libduckdb" >> $GITHUB_ENV
28-
echo "LIBRARY_PATH=libduckdb" >> $GITHUB_ENV
2923
- name: Sync
3024
run: uv sync
3125
- name: Deploy

.github/workflows/pypi.yaml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ jobs:
1717
linux:
1818
runs-on: ${{ matrix.platform.runner }}
1919
strategy:
20-
fail-fast: false
2120
matrix:
2221
platform:
2322
- runner: ubuntu-latest
@@ -40,14 +39,14 @@ jobs:
4039
manylinux: auto
4140
steps:
4241
- uses: actions/checkout@v4
43-
- uses: astral-sh/setup-uv@v5
44-
- name: Install Python versions
45-
run: uv python install 3.10 3.11 3.12 3.13 pypy3.10
42+
- uses: actions/setup-python@v5
43+
with:
44+
python-version: 3.x
4645
- name: Build wheels
4746
uses: PyO3/maturin-action@v1
4847
with:
4948
target: ${{ matrix.platform.target }}
50-
args: --release --out dist -i 3.10 -i 3.11 -i 3.12 -i 3.13 -i pypy3.10 -F duckdb/bundled
49+
args: --release --out dist --find-interpreter -F duckdb/bundled
5150
sccache: "true"
5251
manylinux: ${{ matrix.platform.manylinux }}
5352
- name: Upload wheels

0 commit comments

Comments
 (0)