File tree 6 files changed +606
-689
lines changed
6 files changed +606
-689
lines changed Original file line number Diff line number Diff line change @@ -11,18 +11,18 @@ jobs:
11
11
- uses : actions/setup-python@v5
12
12
with :
13
13
python-version : ${{ matrix.python-version }}
14
- - run : pip install --upgrade pip poetry
15
- - run : poetry install
16
- - run : poetry run make check-test
14
+ - run : pip install --upgrade pip uv
15
+ - run : uv sync
16
+ - run : uv run make check-test
17
17
check-dev :
18
18
runs-on : ubuntu-latest
19
19
steps :
20
20
- uses : actions/checkout@v4
21
21
- uses : actions/setup-python@v5
22
22
with :
23
23
python-version : ' 3.12'
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 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
Original file line number Diff line number Diff line change @@ -11,13 +11,13 @@ jobs:
11
11
- uses : actions/setup-python@v5
12
12
with :
13
13
python-version : ' 3.12'
14
- - run : pip install --upgrade pip poetry
15
- - run : poetry build
14
+ - run : pip install --upgrade pip uv
15
+ - run : uv build
16
16
- uses : ncipollo/release-action@v1
17
17
with :
18
18
artifacts : " dist/*"
19
19
token : ${{ secrets.GITHUB_TOKEN }}
20
20
- name : Publish to PyPI
21
21
env :
22
22
POETRY_PYPI_TOKEN_PYPI : ${{ secrets.PYPI_API_TOKEN }}
23
- run : poetry publish
23
+ run : uv publish
Original file line number Diff line number Diff line change @@ -26,8 +26,8 @@ $ discolinks --url https://example.net
26
26
## Development
27
27
28
28
``` bash
29
- ... # Activate virtualenv.
30
- poetry install
29
+ ... # Activate a virtualenv.
30
+ uv sync
31
31
make check
32
32
```
33
33
You can’t perform that action at this time.
0 commit comments