-
-
Notifications
You must be signed in to change notification settings - Fork 336
support pydantic v2 #1253
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
support pydantic v2 #1253
Conversation
Codecov ReportPatch coverage:
Additional details and impacted files@@ Coverage Diff @@
## main #1253 +/- ##
==========================================
+ Coverage 93.82% 93.92% +0.10%
==========================================
Files 90 91 +1
Lines 6704 6766 +62
==========================================
+ Hits 6290 6355 +65
+ Misses 414 411 -3
☔ View full report in Codecov by Sentry. |
…api.UploadFile type
Signed-off-by: Niels Bantilan <[email protected]>
Signed-off-by: Niels Bantilan <[email protected]>
Signed-off-by: Niels Bantilan <[email protected]>
Signed-off-by: Niels Bantilan <[email protected]>
Signed-off-by: Niels Bantilan <[email protected]>
Signed-off-by: Niels Bantilan <[email protected]>
Signed-off-by: Niels Bantilan <[email protected]>
Signed-off-by: Niels Bantilan <[email protected]>
.github/workflows/ci-tests.yml
Outdated
@@ -101,10 +101,11 @@ jobs: | |||
matrix: | |||
os: ["ubuntu-latest", "macos-latest", "windows-latest"] | |||
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"] | |||
pandas-version: ["1.3.0", "1.5.2", "2.0.1"] | |||
pandas-version: ["1.5.3", "2.0.3"] | |||
pydantic-version: ["1.10.11", "2.0.2"] |
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.
There were some good bugfixes in pydnatic 2.1.0 (https://docs.pydantic.dev/latest/changelog/#v210-2023-07-25), should we bump this to the latest release (2.1.1) to incorporate that?
@Samreay Is there a time frame for the release of Pandera with Pydantic V2 support? |
@niraveen aiming for a release in first week of October |
Fixes #1250, #1245