Skip to content

Commit 12f8394

Browse files
authoredJan 8, 2025
Release 0.4.0 (#1025)
* Bump version * Update PyPI upload CI
1 parent d230460 commit 12f8394

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed
 

‎.github/workflows/pypi.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,12 @@ jobs:
1515
python-version: '3.9'
1616
- name: Install dependencies
1717
run: |
18-
python -m pip install --upgrade pip uv
19-
python -m uv pip install setuptools wheel twine
18+
pip install --upgrade pip uv
19+
uv pip install build twine
2020
- name: Build and publish
2121
env:
2222
TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }}
2323
TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
2424
run: |
25-
python setup.py sdist bdist_wheel
25+
python -m build
2626
twine upload dist/*
+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
VERSION = (0, 3, "5dev0")
1+
VERSION = (0, 4, 0)
22

33
__version__ = ".".join(map(str, VERSION))

0 commit comments

Comments
 (0)
Failed to load comments.