Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 8 additions & 3 deletions .github/workflows/publish-to-pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,17 @@ jobs:
run: |
python -m pip install --upgrade pip
pip install twine build
- name: Package and Upload
- name: Package the code
run: |
# python -m build is backend-independent
python -m build
# test the new wheel
pip install dist/probeinterface*.whl
python -c "import probeinterface; print(probeinterface.__version__)"
- name: Upload to PyPI
env:
STACKMANAGER_VERSION: ${{ github.event.release.tag_name }}
TWINE_USERNAME: __token__
TWINE_PASSWORD: ${{ secrets.PYPI_API_TOKEN }}
run: |
# python -m build is backend-independent
python -m build
twine upload dist/*
9 changes: 9 additions & 0 deletions doc/releases/0.2.28.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
probeinterface 0.2.28
---------------------

May, 5th 2025


Packaging
^^^^^^^^^
* Fix hatchling packaging
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "probeinterface"
version = "0.2.27"
version = "0.2.28"
authors = [
{ name="Samuel Garcia", email="sam.garcia.die@gmail.com" },
{ name="Alessio Buccino", email="alessiop.buccino@gmail.com" },
Expand Down