Skip to content

Commit 30bdc4b

Browse files
committed
prepare 0.2.28
1 parent 24c247b commit 30bdc4b

File tree

2 files changed

+17
-3
lines changed

2 files changed

+17
-3
lines changed

.github/workflows/publish-to-pypi.yml

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,17 @@ jobs:
1919
run: |
2020
python -m pip install --upgrade pip
2121
pip install twine build
22-
- name: Package and Upload
22+
- name: Package the code
23+
run: |
24+
# python -m build is backend-independent
25+
python -m build
26+
# test the new wheel
27+
pip install dist/probeinterface*.whl
28+
python -c "import probeinterface; print(probeinterface.__version__)"
29+
- name: Upload to PyPI
2330
env:
2431
STACKMANAGER_VERSION: ${{ github.event.release.tag_name }}
2532
TWINE_USERNAME: __token__
2633
TWINE_PASSWORD: ${{ secrets.PYPI_API_TOKEN }}
2734
run: |
28-
# python -m build is backend-independent
29-
python -m build
3035
twine upload dist/*

doc/releases/0.2.28.rst

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
probeinterface 0.2.28
2+
---------------------
3+
4+
May, 5th 2025
5+
6+
7+
Packaging
8+
^^^^^^^^^
9+
* Fix hatchling packaging

0 commit comments

Comments
 (0)