File tree 2 files changed +9
-18
lines changed
2 files changed +9
-18
lines changed Original file line number Diff line number Diff line change 5
5
types : [published]
6
6
7
7
jobs :
8
- deploy :
8
+ pypi-publish :
9
+ name : upload release to PyPI
9
10
runs-on : ubuntu-latest
11
+ environment : pypi
12
+ permissions :
13
+ id-token : write
10
14
steps :
11
- - uses : actions/checkout@v3
12
- - name : Set up Python
13
- uses : actions/setup-python@v4
14
- with :
15
- python-version : ' 3.x'
16
- - name : Install dependencies
17
- run : |
18
- python -m pip install --upgrade pip
19
- pip install setuptools wheel twine
20
- - name : Build and publish
21
- env :
22
- TWINE_USERNAME : ${{ secrets.PYPI_USERNAME }}
23
- TWINE_PASSWORD : ${{ secrets.PYPI_PASSWORD }}
24
- run : |
25
- python setup.py sdist bdist_wheel
26
- twine upload dist/*
15
+ - name : Publish package distributions to PyPI
16
+ uses : pypa/gh-action-pypi-publish@release/v1
Original file line number Diff line number Diff line change 1
1
Changelog
2
2
=========
3
3
4
- [1.0.0] (2024-11-XX )
4
+ [1.0.0] (2025-02-14 )
5
5
--------------------
6
6
Added
7
7
*******
@@ -13,6 +13,7 @@ Changed
13
13
*******
14
14
- retrained all models with new architecture and training data
15
15
- removed backwards compatibility with old band naming scheme
16
+ - updated pypi publisher
16
17
17
18
Fixed
18
19
*******
You can’t perform that action at this time.
0 commit comments