gintas / django-picklefield

A pickled object field for Django
MIT License
180 stars 47 forks source link

RuntimeWarning: Pickled model instance's Django version #59

Closed manuelcua closed 3 years ago

manuelcua commented 3 years ago

I´m getting this warning when I updated Django, what should I do? load and save all my models PickedField?

/venv/lib/python3.8/site-packages/picklefield/fields.py:78: RuntimeWarning: Pickled model instance's Django version 3.1.7 does not match the current version 3.2.6.

charettes commented 3 years ago

This warning has little to do with this project but more about what you stored in fields provided by it.

Refer to Django's documentation about the gotchas of pickling Model instances between Django versions.