Skip to content

3.0.0 - Dropping support for python 3.6 and 3.7 #6

3.0.0 - Dropping support for python 3.6 and 3.7

3.0.0 - Dropping support for python 3.6 and 3.7 #6

Workflow file for this run

# https://github.com/actions/starter-workflows/blob/main/ci/python-publish.yml
name: Publish Package
on:
release:
types: [published]
permissions:
contents: read
jobs:
deploy:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.9
uses: actions/setup-python@v4
with:
python-version: 3.9
- name: Install dependencies
run: |
python3 -m pip install --upgrade pip
python3 -m pip install build
- name: Build package
run: python3 -m build
- name: Publish package
uses: pypa/gh-action-pypi-publish@release/v1
with:
password: ${{ secrets.PYPI_API_TOKEN }}