We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 12e091f commit cbf0561Copy full SHA for cbf0561
2 files changed
.github/workflows/publish.yml
@@ -34,6 +34,9 @@ jobs:
34
- name: Check package
35
run: twine check dist/*
36
37
+ - name: Smoke test built package
38
+ run: python scripts/smoke-built-package.py
39
+
40
- name: Upload artifacts
41
uses: actions/upload-artifact@v7
42
with:
CHANGELOG.md
@@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
6
7
## [Unreleased]
8
9
+### Changed
10
+- PyPI/TestPyPI publish builds now run the installed-package smoke before
11
+ uploading artifacts, so release candidates verify the wheel and source
12
+ distribution import from site-packages and replay the README quickstart.
13
14
## [0.3.1] — 2026-04-21
15
16
### Changed
0 commit comments