Upgrade Python from 3.8 to 3.13 and update dependencies#2
Open
devin-ai-integration[bot] wants to merge 1 commit into
Open
Upgrade Python from 3.8 to 3.13 and update dependencies#2devin-ai-integration[bot] wants to merge 1 commit into
devin-ai-integration[bot] wants to merge 1 commit into
Conversation
- Update Python version to ^3.13 in pyproject.toml - Update Dockerfile to use python:3.13-slim base image - Upgrade FastAPI to ^0.116.0 and SQLAlchemy to ^2.0.0 - Add pydantic-settings ^2.0.0 for Pydantic v2 compatibility - Update all dev dependencies to Python 3.13 compatible versions - Fix Pydantic v2 breaking changes in config.py: - Replace BaseSettings import with pydantic_settings - Update validator to field_validator with new syntax - Replace Config class with model_config dictionary - Fix PostgresDsn.build to use username instead of user - Convert PostgresDsn to string for SQLAlchemy 2.0 compatibility - Update Poetry installation method in Dockerfile - Add uvicorn startup command to Dockerfile All tests pass with Python 3.13.1 Co-Authored-By: Sam Fertig <sam.fertig@codeium.com>
Author
🤖 Devin AI EngineerI'll be helping with this pull request! Here's what you should know: ✅ I will automatically:
Note: I can only respond to comments from users who have write access to this repository. ⚙️ Control Options:
|
|
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.


Upgrade Python from 3.8 to 3.13 and update dependencies
Summary
This PR upgrades the FastAPI application from Python 3.8 to Python 3.13, including major dependency updates and compatibility fixes. Key changes include:
tiangolo/uvicorn-gunicorn-fastapi:python3.8topython:3.13-slimpydantic-settingsand updated configuration patternsThe upgrade required addressing several breaking changes:
BaseSettingstopydantic-settings, updated validators and config syntaxReview & Testing Checklist for Human
docker-compose upto verify the newpython:3.13-slimbase image works correctly and performance is acceptable.envfile works correctly with the new Pydantic v2 settings systemTest Plan Recommendation
poetry install && poetry run pytestto verify tests passpoetry run uvicorn app.main:app --reloaddocker-compose build && docker-compose upNotes
Link to Devin run: https://app.devin.ai/sessions/dca6232eece74a3f9e4c017d1ac745b7
Requested by: Sam Fertig (@samfert-codeium)