Merge pull request #157 from gantonayde/master

Add support for Django 3.1
This commit is contained in:
Brent O'Connor 2020-08-31 08:50:33 -05:00 committed by GitHub
commit 4e45f25661
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 2 deletions

View file

@ -1,7 +1,8 @@
"""
These functions handle the adding of fields to other models
"""
from django.db.models import FieldDoesNotExist, ForeignKey, ManyToManyField, CASCADE
from django.db.models import ForeignKey, ManyToManyField, CASCADE
from django.core.exceptions import FieldDoesNotExist
from . import fields
# from settings import self._field_registry, self._model_registry
from django.utils.translation import ugettext_lazy as _

View file

@ -1,2 +1,2 @@
django-mptt>=0.9.0,<0.11
django-mptt==0.11.0
unicode-slugify==0.1.3