Skip to content

Commit e470fbe

Browse files
committed
Migrate to UV
1 parent 66b3370 commit e470fbe

4 files changed

Lines changed: 1641 additions & 2191 deletions

File tree

.github/workflows/publish.yml

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,14 @@ jobs:
1616
- name: Set up Python
1717
uses: actions/setup-python@v5
1818
with:
19-
python-version: "3.8"
19+
python-version: "3.9"
2020

21-
- name: Install Poetry
22-
run: pip install --no-input poetry
21+
- name: Install uv
22+
uses: astral-sh/setup-uv@v6
23+
24+
- name: Build package
25+
run: uv build
2326

2427
- name: Publish package
2528
run: |
26-
poetry config pypi-token.pypi "${{ secrets.POETRY_PYPI_TOKEN_PYPI }}"
27-
poetry publish --build
29+
uv publish

0 commit comments

Comments
 (0)