dulacp / Accountant

Accounting made accessible for small businesses and sole proprietorships through a simple Django project.
http://accountant-x.herokuapp.com/
MIT License
113 stars 56 forks source link

ImportError: cannot import name 'AutoModelSelect2Field' #4

Open brandonwbrown opened 7 years ago

brandonwbrown commented 7 years ago

Looks like the current rev is using Django-Select2 version 4 but I'm showing a Django-Select2 (5.8.10) on pip list after following install and trying initial migrate

File "/Users/bbrown/Accountant/myactenv/src/django-accounting/accounting/apps/people/forms.py", line 6, in from django_select2 import ( ImportError: cannot import name 'AutoModelSelect2Field'

bb78657 commented 7 years ago

I have the same issue, changing to Django-Select2==4.3.2 I get an error: django.db.utils.OperationalError: fe_sendauth: no password supplied

After modifying the code in the django-accounting dependency to use Django-Select2 version 5 I can get a login screen showing but then get an error: TypeError: process() missing 1 required positional argument: 'stream'.

Did you get any further with this application?