Skip to content

Commit

Permalink
bump version to 1.7.5 (#186)
Browse files Browse the repository at this point in the history
* bump version to 1.7.5

* ci: add publish_pypi ci script
  • Loading branch information
ikreymer authored Dec 10, 2024
1 parent 5cf0d40 commit d9ab581
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

- 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 @@ -3,7 +3,7 @@

from setuptools import setup, find_packages

__version__ = '1.7.4'
__version__ = '1.7.5'


setup(
Expand Down

0 comments on commit d9ab581

Please sign in to comment.