File tree Expand file tree Collapse file tree 2 files changed +17
-3
lines changed Expand file tree Collapse file tree 2 files changed +17
-3
lines changed Original file line number Diff line number Diff 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/*
Original file line number Diff line number Diff line change 1+ probeinterface 0.2.28
2+ ---------------------
3+
4+ May, 5th 2025
5+
6+
7+ Packaging
8+ ^^^^^^^^^
9+ * Fix hatchling packaging
You can’t perform that action at this time.
0 commit comments