File tree Expand file tree Collapse file tree 2 files changed +11
-12
lines changed
Expand file tree Collapse file tree 2 files changed +11
-12
lines changed Original file line number Diff line number Diff line change 1- # This workflow will install Python dependencies, run tests and lint with a single version of Python
2- # For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
3-
41name : Publish to PyPI
52
63on :
107jobs :
118 build :
129 runs-on : ubuntu-latest
10+ permissions :
11+ id-token : write
12+ repository-projects : write
13+ contents : write
14+ pages : write
1315
1416 steps :
1517 - uses : actions/checkout@v4
4547 run : |
4648 python -m tox -e clean,build
4749
48- - name : Publish package
49- uses : pypa/gh-action-pypi-publish@v1.12.2
50- with :
51- user : __token__
52- password : ${{ secrets.PYPI_API_TOKEN }}
50+ # This uses the trusted publisher workflow so no token is required.
51+ - name : Publish to PyPI
52+ uses : pypa/gh-action-pypi-publish@release/v1
Original file line number Diff line number Diff line change 11# Changelog
22
3- ## Version 0.1 (development)
3+ ## Version 0.1.0
44
5- - Feature A added
6- - FIX: nasty bug #1729 fixed
7- - add your changes here!
5+ - Initial implementation of various classes - Partitioning and CompressedLists.
6+ - Udpate documentation, tutorial and tests.
You can’t perform that action at this time.
0 commit comments