Skip to content

Commit

Permalink
bump version to 1.4.6 + add publish script (#29)
Browse files Browse the repository at this point in the history
ci: add publish to pypi script
  • Loading branch information
ikreymer authored Dec 10, 2024
1 parent 554c6b6 commit 9ad2b9e
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 1 deletion.
33 changes: 33 additions & 0 deletions .github/workflows/publish_pypi.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: Publish to PYPI
on:
release:
types: [published]

jobs:
pypi-release:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.12]

steps:
- name: checkout
uses: actions/checkout@v1

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}

- name: Install dependencies
run: python -m pip install --upgrade pip wheel twine setuptools

- name: Build Dist
run: python setup.py sdist bdist_wheel --universal

- name: Publish package to TestPyPI
uses: pypa/gh-action-pypi-publish@master
with:
user: __token__
password: ${{ secrets.PYPI_API_TOKEN }}

2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
from setuptools.command.test import test as TestCommand
import glob

__version__ = "1.4.5"
__version__ = "1.4.6"


class PyTest(TestCommand):
Expand Down

0 comments on commit 9ad2b9e

Please sign in to comment.