-
Notifications
You must be signed in to change notification settings - Fork 180
Move builtin classmethod_descriptor to a different test #486
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
This patch mvoes the builtin classmethod descriptor test to a different one and mark it to skip for python >= 3.10.8. The classmethod descriptor serializarion was removed from python in these releases: https://docs.python.org/3.10/whatsnew/changelog.html#id3 More information in the github issue: python/cpython#95196 Fix cloudpipe#485
Codecov ReportBase: 92.47% // Head: 83.12% // Decreases project coverage by
Additional details and impacted files@@ Coverage Diff @@
## master #486 +/- ##
==========================================
- Coverage 92.47% 83.12% -9.36%
==========================================
Files 4 3 -1
Lines 718 711 -7
Branches 159 153 -6
==========================================
- Hits 664 591 -73
- Misses 33 89 +56
- Partials 21 31 +10
Help us with your feedback. Take ten seconds to tell us how you rate us. Have a feature suggestion? Share it here. ☔ View full report at Codecov. |
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.
LGTM. We can later investigate we want to attempt classmethod descriptors in cloudpickle (for interactively defined classes) in a follow-up PR if someone has a need for it.
There are unrelated failures with the pytest module... |
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.
Thanks for the PR. Few suggestions, see review.
Co-authored-by: Pierre Glaser <[email protected]>
Co-authored-by: Pierre Glaser <[email protected]>
Co-authored-by: Pierre Glaser <[email protected]>
Thanks @danigm, waiting for CI and merging. |
Let's merge and fix the CI in #494. |
This patch mvoes the builtin classmethod descriptor test to a different one and mark it to skip for python >= 3.10.8. The classmethod descriptor serializarion was removed from python in these releases: https://docs.python.org/3.10/whatsnew/changelog.html#id3
More information in the github issue:
python/cpython#95196
Fix #485