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 42f57ab commit bc67828Copy full SHA for bc67828
1 file changed
.github/workflows/build_wheels.yml
@@ -18,8 +18,11 @@ jobs:
18
with:
19
submodules: recursive
20
21
+ # FIXME(bbannier): Use `uv` here for support for `PROJECT_ROOT` in `pyproject.toml`.
22
+ - uses: astral-sh/setup-uv@v6
23
+
24
- name: Build SDist
- run: python ./setup.py sdist
25
+ run: uv build --sdist
26
27
- uses: actions/upload-artifact@v4
28
@@ -37,11 +40,11 @@ jobs:
37
40
- uses: actions/setup-python@v6
38
41
39
42
python-version: ${{ matrix.python-version }}
43
44
45
- name: Install dependencies
- run: pip install .[dev]
- - run: pytest
-
46
+ run: uv sync --all-extras
47
+ - run: uv run pytest
48
49
upload_all:
50
needs: [build_sdist, check]
0 commit comments