Skip to content

Commit c7ba61c

Browse files
authored
Merge pull request #31 from bbc2/uv
Move from Poetry to uv
2 parents 30fc63c + 3736049 commit c7ba61c

File tree

4 files changed

+488
-552
lines changed

4 files changed

+488
-552
lines changed

.github/workflows/main.yml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -11,21 +11,21 @@ jobs:
1111
- uses: actions/setup-python@v5
1212
with:
1313
python-version: ${{ matrix.python-version }}
14-
- run: pip install --upgrade pip poetry
15-
- run: poetry install
16-
- run: poetry run make check-tests
14+
- run: pip install --upgrade pip uv
15+
- run: uv sync
16+
- run: uv run make check-tests
1717
check-dev:
1818
runs-on: ubuntu-24.04
1919
steps:
2020
- uses: actions/checkout@v4
2121
- uses: actions/setup-python@v5
2222
with:
2323
python-version: '3.13'
24-
- run: pip install --upgrade pip poetry
25-
- run: poetry install
26-
- run: poetry run make check-lint
27-
- run: poetry run make check-format
28-
- run: poetry build
24+
- run: pip install --upgrade pip uv
25+
- run: uv sync
26+
- run: uv run make check-lint
27+
- run: uv run make check-format
28+
- run: uv build
2929
release:
3030
if: startsWith(github.ref, 'refs/tags')
3131
runs-on: ubuntu-latest
@@ -35,8 +35,8 @@ jobs:
3535
- uses: actions/setup-python@v5
3636
with:
3737
python-version: '3.13'
38-
- run: pip install --upgrade pip poetry
39-
- run: poetry build
38+
- run: pip install --upgrade pip uv
39+
- run: uv build
4040
- uses: pypa/gh-action-pypi-publish@master
4141
with:
4242
user: __token__

0 commit comments

Comments
 (0)