-
Notifications
You must be signed in to change notification settings - Fork 13
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
feat: updated to python 3.13 and uv 5.1 #214
Conversation
Reviewer's Guide by SourceryThis PR updates the project's Python version from 3.12 to 3.13 and upgrades the uv package manager from version 0.4.27 to 0.5.1. The changes are implemented through version updates in configuration files, including dependency updates and build settings modifications. Class diagram for updated project dependenciesclassDiagram
class Project {
+string name
+string version
+string description
+string license
+list authors
+string readme
+string requires-python
+list dependencies
+list dev-dependencies
}
note for Project "Updated Python version to 3.13 and pytest-cov to 6.0.*"
Project : +dependencies = fastapi[standard]==0.115.*, httpx[http2]==0.27.*
Project : +dev-dependencies = ipdb==0.13.*, pytest==8.3.*, pytest-asyncio==0.24.*, pytest-cov==6.0.*, pytest-randomly==3.16.*, pytest-xdist==3.6.*, ruff==0.7.*
File-Level Changes
Tips and commandsInteracting with Sourcery
Customizing Your ExperienceAccess your dashboard to:
Getting Help
|
Quality Gate passedIssues Measures |
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.
Hey @TeKrop - I've reviewed your changes - here's some feedback:
Overall Comments:
- Using Python 3.13 in production is not recommended as it's still in development. Consider using the latest stable Python 3.12.x version instead.
Here's what I looked at during the review
- 🟢 General issues: all looks good
- 🟢 Security: all looks good
- 🟢 Testing: all looks good
- 🟢 Complexity: all looks good
- 🟢 Documentation: all looks good
Help me be more useful! Please click 👍 or 👎 on each comment and I'll use the feedback to improve your reviews.
Summary by Sourcery
Update the project to require Python 3.13 and upgrade uv to version 5.1. Adjust the Dockerfile and CI workflows to reflect these changes.
New Features:
Enhancements:
Build:
CI: