Skip to content

Commit bc67828

Browse files
committed
fixup! Rust formatter infra
1 parent 42f57ab commit bc67828

File tree

1 file changed

+8
-5
lines changed

1 file changed

+8
-5
lines changed

.github/workflows/build_wheels.yml

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,11 @@ jobs:
1818
with:
1919
submodules: recursive
2020

21+
# FIXME(bbannier): Use `uv` here for support for `PROJECT_ROOT` in `pyproject.toml`.
22+
- uses: astral-sh/setup-uv@v6
23+
2124
- name: Build SDist
22-
run: python ./setup.py sdist
25+
run: uv build --sdist
2326

2427
- uses: actions/upload-artifact@v4
2528
with:
@@ -37,11 +40,11 @@ jobs:
3740
- uses: actions/setup-python@v6
3841
with:
3942
python-version: ${{ matrix.python-version }}
43+
# FIXME(bbannier): Use `uv` here for support for `PROJECT_ROOT` in `pyproject.toml`.
44+
- uses: astral-sh/setup-uv@v6
4045
- name: Install dependencies
41-
run: pip install .[dev]
42-
- run: pytest
43-
44-
46+
run: uv sync --all-extras
47+
- run: uv run pytest
4548

4649
upload_all:
4750
needs: [build_sdist, check]

0 commit comments

Comments
 (0)