gregmuellegger / django-superform

Add forms and formsets to other forms like they were fields.

Home Page:http://django-superform.readthedocs.org/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Support for django 3.0

abdul-hamid-achik opened this issue · comments

I would like to use this package as well, but it seems to me that it's not maintained. Last commit was on Mar 2, 2017

if you have to update, try doing

import six
import django.utils

django.utils.six = six

before importing this library or any library that has from django.utils import six within its codebase

so this isnt supported for django 3.0?

after fixing the problem with a six
i get another problem with import:

from .forms import SuperForm, SuperModelForm
from .boundfield import CompositeBoundField
from django.forms.forms import BoundField
ImportError: cannot import name 'BoundField' from 'django.forms.forms'