You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
docs: update release workflow to default to direct-to-main PRs
Staging is now reserved for multi-feature releases. Single-feature
releases go feature branch → PR to main directly.
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
fix: resolve Python 3.14 crash from builtin list shadowing in custom_…
…events
PEP 649 deferred annotation evaluation causes `list[str]` to resolve
to the `def list()` function instead of the builtin. Use typing.List
and typing.Optional instead. Also add typing_extensions as explicit
dependency (no longer pulled in transitively by newer Typer).
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
chore: add pyproject.toml and poetry.lock to publish trigger paths
Also add workflow_dispatch to allow manual publish triggers.
Includes trivial __init__.py touch to trigger publish for 1.18.0.
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>