Skip to content

Temporarily avoid setuptools 77.0.3 #22

Temporarily avoid setuptools 77.0.3

Temporarily avoid setuptools 77.0.3 #22

Workflow file for this run

name: Release
on:
push:
tags:
- 'v[0-9]*'
jobs:
publish-wheel:
runs-on: ubuntu-latest
environment: release
permissions:
id-token: write # mandatory for trusted publishing
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.10'
- run: |
pip install -U pip setuptools wheel tox
git config --global user.name tester
git config --global user.email [email protected]
- run: tox -e py,docs,style,security
- run: python setup.py sdist bdist_wheel --universal
- name: Publish to PyPI
uses: pypa/gh-action-pypi-publish@release/v1