Skip to content

Add missing type hints #37

Add missing type hints

Add missing type hints #37

Workflow file for this run

name: Publish Python Package
on: push
jobs:
build-n-publish:
name: Build and publish Python 🐍 distributions 📦 to PyPI
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.10
uses: actions/setup-python@v4
with:
python-version: "3.10.5"
- name: Install pypa/build
run: |
pip install -r requirements-dev.txt
python setup.py build
- name: Build a binary wheel and a source tarball
run: |
python setup.py build sdist bdist bdist_wheel
- name: Publish distribution 📦 to PyPI
if: startsWith(github.ref, 'refs/tags')
uses: pypa/gh-action-pypi-publish@master
with:
password: ${{ secrets.pypi_password }}