Skip to content
This repository was archived by the owner on Jul 16, 2025. It is now read-only.
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/workflows/build_for_pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
name: Build for PyPi

on:
pull_request:
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I recommend calling this job from ci.yml instead and running builds for PRs unconditionally. Of course, you'll probably want to skip a portion of wheels in PRs (as an optimization), but could still build x86_64 — you're double-building them via pip install -e . anyway. But by integrating this instead, you could get closer to releasing exactly what you test.

workflow_call:
inputs:
publish:
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ env = [
packages = ["codecov_cli"]

[tool.cibuildwheel]
skip = ["pp*", "cp313-*"]
skip = "pp*"
test-command = "codecovcli --help"

[tool.cibuildwheel.config-settings]
Expand Down
Loading