-
-
Notifications
You must be signed in to change notification settings - Fork 428
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
Add dill serializer #321
base: master
Are you sure you want to change the base?
Add dill serializer #321
Conversation
dill needs to be added to requirements.txt |
Add dill as requirement
done |
I think it would be good to add tests similar to the other serializers. |
Tests are mandatory for new features. |
Hi I added some test for dill. |
If someone knows they want extras_require={
'dill': ['dill'],
}, |
Can this PR also come with a change to the docs? |
Hi,
this is a dill serializer.
I do need it because I use django model utils to track fields.
That plugin does not work with pickle but dill works on serializing models with it:
jazzband/django-model-utils#83
Best and thanks
Sven