Skip to content

feat: add python 3.11 support (#78) #1

feat: add python 3.11 support (#78)

feat: add python 3.11 support (#78) #1

Workflow file for this run

name: Publish Package to PyPI
on:
push:
tags:
- "*"
jobs:
push:
runs-on: ubuntu-20.04
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup Python
uses: actions/setup-python@v2
with:
python-version: 3.8
- name: Install pip
run: pip install -r requirements/pip.txt
- name: Build package
run: python setup.py sdist bdist_wheel
- name: Publish to PyPI
uses: pypa/gh-action-pypi-publish@master
with:
user: __token__
password: ${{ secrets.PYPI_UPLOAD_TOKEN }}