Support Python 3.12 and update pre-commit versions (#79) #8
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Publish to PyPI | |
on: | |
push: | |
tags: | |
- '20*' | |
jobs: | |
build_and_deploy: | |
runs-on: ubuntu-latest | |
if: github.repository == 'python-graphblas/graphblas-algorithms' | |
defaults: | |
run: | |
shell: bash -l {0} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: "3.9" | |
- name: Install build dependencies | |
run: | | |
python -m pip install --upgrade pip | |
python -m pip install build twine | |
- name: Build wheel and sdist | |
run: python -m build --sdist --wheel | |
- uses: actions/upload-artifact@v3 | |
with: | |
name: releases | |
path: dist | |
if-no-files-found: error | |
- name: Check with twine | |
run: python -m twine check --strict dist/* | |
- name: Publish to PyPI | |
uses: pypa/[email protected] | |
with: | |
user: __token__ | |
password: ${{ secrets.PYPI_TOKEN }} |