stephenmuss / django-ios-notifications

Django iOS Notifications makes it easy to send push notifications to iOS devices
Other
230 stars 72 forks source link

EncryptedCharField isn't compatible with django 1.10 #75

Open kalvish21 opened 8 years ago

kalvish21 commented 8 years ago

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?

aesmail commented 7 years ago

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

stephenmuss commented 7 years ago

I would be open to removing the dependency and even the need for a password field.

Accepting pull requests.