django-ios-notifications
django-ios-notifications copied to clipboard
EncryptedCharField isn't compatible with django 1.10
Seems for django 1.10 we have the following:
from django_fields.fields import EncryptedCharField
Unfortunately django_fields isn't properly supported. EncryptedCharField isn't compatible with django 1.10. Can we remove this dependency?
Using this fork instead of the actual django_fields package solves the problem.
Just uninstall the current django-fields package and:
pip install git+https://github.com/nautilebleu/django-fields.git
I would be open to removing the dependency and even the need for a password field.
Accepting pull requests.