-
Notifications
You must be signed in to change notification settings - Fork 3
Update packaging following uv advancements #106
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
|
Caution Review failedThe pull request is closed. WalkthroughThis update restructures dependency management and developer tooling by introducing PEP 735-style dependency groups in Changes
Sequence Diagram(s)sequenceDiagram
participant User
participant CLI (sys-info)
participant config.sys_info
participant pyproject.toml
User->>CLI (sys-info): Invoke with --extra/--developer/--package
CLI (sys-info)->>config.sys_info: Call with options
alt Show core dependencies
config.sys_info->>pyproject.toml: Read core dependencies
end
alt Show extras
config.sys_info->>pyproject.toml: Read "Provides-Extra"
end
alt Show developer dependencies
config.sys_info->>pyproject.toml: Parse [dependency-groups]
end
config.sys_info-->>CLI (sys-info): Output info
CLI (sys-info)-->>User: Display system/dependency info
Poem
📜 Recent review detailsConfiguration used: CodeRabbit UI ⛔ Files ignored due to path filters (1)
📒 Files selected for processing (16)
✨ Finishing Touches
🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
SupportNeed help? Create a ticket on our support page for assistance with any issues or questions. Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (Invoked using PR comments)
Other keywords and placeholders
CodeRabbit Configuration File (
|
Summary by CodeRabbit
New Features
sys-info, with options to display optional and developer dependencies, or information for a specific package.Improvements
sys_infoutility to support more granular options and improved handling of dependency groups.Bug Fixes
sys_infoutility for unsupported packages or missing configuration.Tests
sys_infoutility and related features.Refactor