-
Notifications
You must be signed in to change notification settings - Fork 42
Bump poetry to v2.2.0 #253
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
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pull Request Overview
This PR upgrades Poetry from version 2.1.3 to 2.2.0 across the project configuration files. The changes align with Poetry 2.2.0's new features and requirements.
- Updates Poetry version in pre-commit configuration and GitHub Actions workflow
- Adds license-files configuration to pyproject.toml
- Configures dev dependency group as optional and updates installation command
Reviewed Changes
Copilot reviewed 3 out of 4 changed files in this pull request and generated 1 comment.
| File | Description |
|---|---|
| pyproject.toml | Adds license-files field and configures dev dependency group as optional |
| .pre-commit-config.yaml | Updates Poetry revision hash from 2.1.3 to 2.2.0 |
| .github/workflows/main.yml | Updates Poetry installation version and modifies install command to use --with=dev flag |
Tip: Customize your code reviews with copilot-instructions.md. Create the file or learn how to get started.
pyproject.toml
Outdated
| authors = [ { name = "Oleg Pidsadnyi", email= "[email protected]" } ] | ||
| maintainers = [ { name = "Alessio Bogon", email = "[email protected]" } ] | ||
| license = "MIT" | ||
| license-files = [ "LICENSE.md"] |
Copilot
AI
Sep 16, 2025
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[nitpick] There's a spacing inconsistency in the license-files array. There should be a space after the opening bracket: [ \"LICENSE.md\" ] to match the formatting style used elsewhere in the file (e.g., line 5 authors array).
| license-files = [ "LICENSE.md"] | |
| license-files = [ "LICENSE.md" ] |
33202fe to
d544000
Compare
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## master #253 +/- ##
=======================================
Coverage 97.85% 97.85%
=======================================
Files 16 16
Lines 886 886
Branches 54 54
=======================================
Hits 867 867
Misses 8 8
Partials 11 11 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
No description provided.