Skip to content

Commit

Permalink
Use django.utils.six instead of six
Browse files Browse the repository at this point in the history
  • Loading branch information
mbourqui committed May 22, 2020
1 parent 8d1a0bd commit 1bb7f28
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
9 changes: 5 additions & 4 deletions publications_bootstrap/utils/import_bibtex.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,16 @@
__author__ = "Lucas Theis <lucas@theis.io> and Christian Glodt <chris@mind.lu>"
__docformat__ = "epytext"

from publications.models import Publication, Type
import re

import django.utils.six as six
from bibtexparser.bparser import BibTexParser
from bibtexparser.customization import author, keyword
from django.core.exceptions import FieldDoesNotExist
from django.forms.models import model_to_dict
from django_countries import countries
from django.core.exceptions import FieldDoesNotExist

import re
import publications.six as six
from ..models import Publication, Type

# mapping of months
MONTHS = {
Expand Down
1 change: 0 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,6 @@
'bibtexparser>=1.1.0',
'django-countries>=6.0',
'django-ordered-model>=2.1.0',
'six>=1.10.0',
'django-echoices>=2.6',
],
zip_safe=False,
Expand Down

0 comments on commit 1bb7f28

Please sign in to comment.