Skip to content

remove-dependencies #41

remove-dependencies

remove-dependencies #41

Workflow file for this run

name: Publish to PyPI
on:
push:
branches:
- main
jobs:
build-n-publish:
name: Publish to PyPI
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.12
uses: actions/setup-python@v3
with:
python-version: '3.12'
- name: Install dependencies
run: python -m pip install setuptools wheel
- name: Build a binary wheel
run: python setup.py sdist bdist_wheel
- name: Publish to PyPI
uses: pypa/gh-action-pypi-publish@master
with:
password: ${{ secrets.PYPI_TOKEN }}