fix: set minimum pydantic version to 2.11 to avoid model_fields depreciations#654
Open
himax12 wants to merge 1 commit intoapache:mainfrom
Open
fix: set minimum pydantic version to 2.11 to avoid model_fields depreciations#654himax12 wants to merge 1 commit intoapache:mainfrom
himax12 wants to merge 1 commit intoapache:mainfrom
Conversation
…cation warning - Updated pydantic dependency constraints to require minimum version 2.11 - Pydantic v2.11+ deprecated accessing model_fields on instances - Will be removed in Pydantic v3.0 - Updated in: tracking-client, tracking-server, pydantic extra, and tests dependencies - All 32 pydantic integration tests pass
There was a problem hiding this comment.
Pull request overview
This PR updates optional dependency constraints in pyproject.toml to require Pydantic v2.11+ in order to address model_fields deprecation behavior referenced in the PR description.
Changes:
- Bump
testsoptional dependency topydantic[email]>=2.11. - Bump
tracking-client,tracking-server, andpydanticoptional dependency groups topydantic>=2.11.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
7 tasks
Contributor
|
you need to actually change the code like #663 |
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.
This pull request updates the
pydanticdependency version to ensure consistency and compatibility across multiple extras in thepyproject.tomlfile. All references topydanticare now set to require version 2.11 or higher.Dependency version updates:
pydanticdependency to require>=2.11in thetests,tracking-client,tracking-server, andpydanticextras sections ofpyproject.tomlto standardize the minimum version used throughout the project. [1] [2] [3] [4]=