-
Notifications
You must be signed in to change notification settings - Fork 167
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
pickling annotations / mappingproxy objects #223
Comments
I think this is in the scope of cloudpickle however I have no idea about the details of how it should be implemented. If you want to give it a try, please feel free to submit a PR. |
@ogrisel - i don't know if i have a solution to this at this point. i ended up using a mixture of pickle and cloudpickle i think. let's leave this open for now, and see if someone else pitches in. |
this might be fixed in #245 |
A fix would be great as we are running into similar issues. |
#245 has been merged in master. |
The fix to support dataclasses is now available in cloudpickle 0.8.0 on PyPI. |
cloudpickle appears to still have an issue (see #193, #209) with pickling type annotations. the reason i can't use pickle is that it doesn't support dynamic dataclasses (see: https://bugs.python.org/issue35510), which cloudpickle does support.
The text was updated successfully, but these errors were encountered: