File tree 3 files changed +14
-7
lines changed
3 files changed +14
-7
lines changed Original file line number Diff line number Diff line change @@ -13,15 +13,21 @@ jobs:
13
13
runs-on : ubuntu-latest
14
14
steps :
15
15
- uses : actions/checkout@v4
16
- - name : Set up Python ${{ env.PYTHON_VERSION }}
17
- uses : actions /setup-python @v5
16
+ - name : Install uv
17
+ uses : astral-sh /setup-uv @v5
18
18
with :
19
19
python-version : ${{ env.PYTHON_VERSION }}
20
+
21
+ - name : Set up Python
22
+ run : uv python install
23
+
24
+ - name : Install dependencies
25
+ run : uv sync --frozen --group release
26
+
20
27
- name : Build artifact
21
28
run : |
22
- make install-release
23
- python setup.py sdist
24
- python setup.py bdist_wheel
29
+ uv build
30
+
25
31
- name : Publish package
26
32
uses : pypa/gh-action-pypi-publish@release/v1
27
33
with :
Original file line number Diff line number Diff line change 1
- ## 1.0.0
1
+ ## 1.0.1
2
2
3
3
### Features
4
4
5
5
* ** Migrate project to use pyproject.toml and uv**
6
6
7
+
7
8
## 0.7.2
8
9
9
10
### Features
Original file line number Diff line number Diff line change 1
- __version__ = "1.0.0 " # pragma: no cover
1
+ __version__ = "1.0.1 " # pragma: no cover
You can’t perform that action at this time.
0 commit comments