chore: pin faststream <0.7 and adopt planning/ workflow#25
Merged
Conversation
- pyproject.toml: faststream~=0.6 -> >=0.6,<0.7. Explicit upper bound makes intent visible and lets the 0.7 migration land in a feature branch without users pulling unfinished work. Discovered during PR1 setup that `~=0.6` was already silently resolving to 0.7.0 in fresh Docker builds and breaking the suite; the tightened pin fixes that. - pyproject.toml: addopts adds --cov-fail-under=100 (matches sister faststream-outbox project). Hardens the coverage gate before the 0.7 migration (PR2) removes branches. - planning/: scaffold planning/specs/ + planning/plans/ with .gitkeep files; mirrors the sister faststream-outbox layout. Includes the faststream-0.7 migration design and the two plan files so PR2 has a home. - CLAUDE.md: new ## Workflow section pointing at the planning/ layout. Companion PR migrates to faststream 0.7 and drops 0.6 support (>=0.7,<0.8).
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
~=0.6to>=0.6,<0.7. The companion PR migrates to 0.7 and drops 0.6 support. Discovered during setup that~=0.6was already silently resolving to 0.7.0 in fresh Docker builds and breaking the suite; the tightened pin restores green CI.--cov-fail-under=100(matches sisterfaststream-outboxproject). Hardens the coverage gate before PR2 removes branches.planning/specs/andplanning/plans/and lands the 0.7 migration design + two-PR plan files.Test plan
just lintpassesjust testpasses at 100% coverage (104 tests)planning/specs/andplanning/plans/are tracked by gitCLAUDE.mdshows the new## Workflowsection between## Commandsand## Tests