File tree Expand file tree Collapse file tree 3 files changed +9
-5
lines changed Expand file tree Collapse file tree 3 files changed +9
-5
lines changed Original file line number Diff line number Diff line change @@ -30,12 +30,12 @@ jobs:
30
30
python-version : ' 3.x'
31
31
- name : Install dependencies
32
32
run : |
33
- python -m pip install --upgrade pip
34
- pip install build
33
+ python -m pip install -U uv
34
+ python -m uv pip install -U hatch
35
35
- name : Build package
36
- run : python -m build
36
+ run : python -m hatch build --clean
37
37
- name : Publish package
38
- uses : pypa/gh-action-pypi-publish@e53eb8b103ffcb59469888563dc324e3c8ba6f06
38
+ uses : pypa/gh-action-pypi-publish@release/v1
39
39
with :
40
40
user : __token__
41
41
password : ${{ secrets.PYPI_API_TOKEN }}
Original file line number Diff line number Diff line change @@ -9,6 +9,10 @@ Source code is also available at:
9
9
10
10
# Release Notes
11
11
12
+ - v1.6.1(July 9, 2024)
13
+
14
+ - Update internal project workflow with pypi publishing
15
+
12
16
- v1.6.0(July 8, 2024)
13
17
14
18
- support for installing with SQLAlchemy 2.0.x
Original file line number Diff line number Diff line change 3
3
#
4
4
# Update this for the versions
5
5
# Don't change the forth version number from None
6
- VERSION = "1.6.0 "
6
+ VERSION = "1.6.1 "
You can’t perform that action at this time.
0 commit comments