Hacktoberfest 2026: the issues maintainers tagged for October, open and beginner-friendly. Browse Hacktoberfest issues

Automate the PyPI release

Open
#261 0 comments 1 reaction 0 assignees View on GitHub

Nobody has claimed this yet.

Assessment

Difficulty
3/5
Estimated time
1-2 days
Newbie friendliness
48/100
Issue type
Feature
Clarity
Mostly clear
Activity status
Stale
Tech stack
github-actions, shell

Research direction

Start with the existing publish workflow and the linked comment for the proposed tag-triggered structure. Trace how the workflow currently builds and publishes releases, then verify that pushing a v* tag builds the release and publishes it to PyPI without manual triggering.

Written by the indexing model from the issue text.

Description

Rather than manually trigger a PyPI release on the publish workflow, we could automate it so when tags are pushed a release is built and pushed to PyPI, see this comment

name: PyPI/Github Release

on:
  push:
    tags:
      - "v*"

jobs:
  build_wheels:
    runs-on: ${{ matrix.os }}
    if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags')
    strategy:
      matrix:
...

thanks @andyfaff for the idea.

Dominant language
Shell
Stars
17
Forks
25
Avg merge
7h 10m
Merged PRs (30d)
1

Contributor guide

No contributing guide indexed for this repository

First steps

  1. Read the whole issue, then the project's contributing guide.
  2. Comment on the issue to say you are picking it up — it saves two people doing the same work.
  3. Fork the repository and make your change on a branch.
  4. Open a pull request that references the issue number.

More from MacPython/openblas-libs

All issues in MacPython/openblas-libs

Similar issues

More Shell/Bash issues

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.