Skip to content
Merged
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
2 changes: 1 addition & 1 deletion .claude/skills/managing-dependencies/SKILL.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ The convention resolves this without dropping old-Python support. Pin each inter

## File-layout convention

Each file lists **one dependency per section**: Name of the dependency, an optional rationale note (starting with `Note:`, explaining why a version is pinned or split), then the requirement line(s), separated from the next section by a blank line. This makes every pin self-documenting.
Each file lists **one dependency per section**: Name of the dependency, an optional rationale note (starting with `Note:`, explaining why a version is pinned or split), then the requirement line(s), separated from the next section by a blank line. This makes every pin self-documenting. Keep the note to the *why*; do not restate the per-interpreter ceilings or floors that are already readable on the requirement lines below, and omit the note entirely when the split is self-evident (as the `websockets` entry does).

```
# pytest
Expand Down
5 changes: 4 additions & 1 deletion requirements/optional.txt
Original file line number Diff line number Diff line change
Expand Up @@ -35,4 +35,7 @@ websockets>=9.1,<16; python_version == "3.9"
websockets>=16.1.1,<17; python_version >= "3.10"

# websocket-client
websocket-client>=1,<2
websocket-client>=1,<1.6.2; python_version == "3.7"
websocket-client>=1,<1.9.0; python_version == "3.8"
websocket-client>=1,<1.9.1; python_version == "3.9"
websocket-client>=1.9.1,<2; python_version >= "3.10"
Loading