I'm upgrading django from 1.7 to 1.9 by means of replacing packages, installed in system (Debian 8) via apt-get
with packages, installed via pip
.
So, I installed jsonfield
package from pip instead of apt's good old python-django-jsonfield
and tried running unittests.
All my jsonfields, defined as jsonfield.JSONField()
, fail the tests with message:
ValidationError: [u'Enter valid JSON']
Everything worked fine before. Any ideas, what's changed?