diff --git a/.github/workflows/master.yml b/.github/workflows/master.yml index 2922e9c..f6a228c 100644 --- a/.github/workflows/master.yml +++ b/.github/workflows/master.yml @@ -15,7 +15,17 @@ jobs: # IMPORTANT: this permission is mandatory for trusted publishing id-token: write steps: - # retrieve your distributions here + - uses: actions/checkout@v3 + + - uses: actions/setup-python@v4 + with: + python-version: "3.x" + + - name: deps + run: python -m pip install -U build + + - name: build + run: python -m build - name: Publish package distributions to PyPI uses: pypa/gh-action-pypi-publish@release/v1 diff --git a/setup.py b/setup.py index 21d6683..be40852 100755 --- a/setup.py +++ b/setup.py @@ -6,7 +6,7 @@ from setuptools import find_packages from distutils.core import setup -version = "1.5.0" +version = "1.5.1" with open("README.rst") as f: long_description = f.read()