Bump trove classifier to Production/Stable#10
Merged
Conversation
Notebook fixes (same defect class as Pottslab#11): - Uncomment %pip install (was commented; cached run validated local source). - Use --upgrade cssd so the smoke test always exercises the latest published wheel rather than pinning to a specific historical version. - Add hard assertion that _core.__file__ contains 'site-packages' so the notebook fails loudly if accidentally run from a local checkout. - Strip all outputs and execution_count. The previous outputs showed '0.1.0 — smoke test OK' and a path inside the repo checkout, both misleading. Changelog hygiene: - Add reference-link definitions for [Unreleased], [1.0.2], [1.0.1] so the bracketed headings actually resolve to GitHub URLs.
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Bundles three post-release polish items into one PR.
1. Trove classifier: Beta -> Production/Stable
pyproject.tomldeclaredDevelopment Status :: 4 - Beta. cssd has been published as v1.0.x for a full minor cycle and the public API is stable, so the classifier should be5 - Production/Stableto match L1TV / Pottslab / CMF / DCEBE in the family.2.
demos_py/release_smoke_test.ipynbnow actually validates a wheelSame defect class as Pottslab#11 caught earlier in this cycle:
%pip install cssd matplotlib --quietline was commented out, so the notebook validated whatever was on the local Python path._cssd_coreloaded from10-OwnRepos/CSSD/python/cssd/_cssd_core.abi3.so(the in-repo build), not from a wheel insite-packages.cssd 0.1.0 - smoke test OKagainst a repo on v1.0.2.Fix:
--upgrade cssdso future runs always validate the latest published wheel.assert 'site-packages' in _core.__file__so the notebook fails loudly if accidentally re-run against the local checkout.outputsandexecution_count. The notebook commits clean and a fresh-kernel run produces honest outputs.3. CHANGELOG.md link defs
The bracketed
## [Unreleased],## [1.0.2],## [1.0.1]headings had no matching reference-link definitions. Added all three.Test plan