Skip to content

Bump mypy from 0.790 to 1.5.0 #251

Bump mypy from 0.790 to 1.5.0

Bump mypy from 0.790 to 1.5.0 #251

Workflow file for this run

name: release
on: push
jobs:
publish-pypi:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: Set up Python 3.7
uses: actions/setup-python@v2.3.1
with:
python-version: 3.7
- name: Install dependencies
run: pip install -qU setuptools wheel twine
- name: Generating distribution archives
run: python setup.py sdist bdist_wheel
- name: Publish distribution 📦 to PyPI
if: startsWith(github.event.ref, 'refs/tags')
uses: pypa/gh-action-pypi-publish@master
with:
user: __token__
password: ${{ secrets.pypi_password }}