-
Notifications
You must be signed in to change notification settings - Fork 86
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
make json_field work with django 1.7+ properly #41
base: master
Are you sure you want to change the base?
Conversation
django.form.util is renamed to django.form.utils and will be removed starting v1.9 http://django.readthedocs.org/en/latest/releases/1.7.html#util-modules-renamed-to-utils
👍 |
1 similar comment
+1 |
+1 I'm going to miss those warnings in my logs. =) |
+1 |
+1 is there any timeline on when this may get merged? |
@derek-schaefer could you share some update on status of this project? was it abandoned? |
@qrilka You may know this already -- django 1.9 has a built-in JSON field for postgres (9.4+ w/ jsonb) -- it has very similar mechanics to this project. I've been using it in production with good results and am starting to migrate existing fields to the built-in field. https://docs.djangoproject.com/en/1.9/ref/contrib/postgres/fields/#django.contrib.postgres.fields.JSONField As for this project I don't know its status, sorry. =) |
I wish we were using postgres, thanks for the info @EyePulp |
@qrilka Unfortunately yes I'd say this project can be considered abandoned. I created it to fulfill a personal use case however I haven't used Django or Python for web development in quite some time so my motivation and skills for maintaining this project have waned. Finding new maintainers would be great and I'll update the documentation to that effect. |
If so then one possible solution could be to move the project to https://jazzband.co/ but unfortunately I don't have enough time in near future to do that :( |
Thanks for the link! Might be helpful. |
Fixed import to work with 1.7, as well as newer versions. Credit goes to: derek-schaefer#41
django.form.util is renamed to django.form.utils and will be removed starting v1.9
http://django.readthedocs.org/en/latest/releases/1.7.html#util-modules-renamed-to-utils