cloudpipe / cloudpickle

Extended pickling support for Python objects
Other
1.64k stars 167 forks source link

Tests fails on Python 3.10.8 #485

Closed danigm closed 1 year ago

danigm commented 1 year ago

Python 3.10.8 (and future) disables the pickling of classmethod_descriptors. There's a test that tries to pickle/unpickle this, and this make tests fail.

https://docs.python.org/3.10/whatsnew/changelog.html#id3

gh-95196: Disable incorrect pickling of the C implemented classmethod descriptors.