kopia lustrzana https://github.com/wagtail/wagtail
Use six from Django, remove six from tox.ini
All referencs to `six` were removed in #1411 favouring `django.utils.six`, except for one in `tox.ini` where it was installed as a dependency. Because it was still installed in the test environment, a few references to `six` crept back in. These will cause an ImportError when users do not have `six` installed. These references have been fixed, and `six` has been removed from `tox.ini`pull/1868/head
rodzic
838e03a2b5
commit
b3560b7941
1
tox.ini
1
tox.ini
|
@ -28,7 +28,6 @@ deps =
|
||||||
beautifulsoup4>=4.3.2
|
beautifulsoup4>=4.3.2
|
||||||
html5lib==0.999
|
html5lib==0.999
|
||||||
Unidecode>=0.04.14
|
Unidecode>=0.04.14
|
||||||
six==1.7.3
|
|
||||||
elasticsearch==1.1.0
|
elasticsearch==1.1.0
|
||||||
mock==1.0.1
|
mock==1.0.1
|
||||||
python-dateutil==2.2
|
python-dateutil==2.2
|
||||||
|
|
|
@ -3,9 +3,9 @@
|
||||||
# https://github.com/django/django/blob/5d263dee304fdaf95e18d2f0619d6925984a7f02/django/core/cache/__init__.py
|
# https://github.com/django/django/blob/5d263dee304fdaf95e18d2f0619d6925984a7f02/django/core/cache/__init__.py
|
||||||
|
|
||||||
import sys
|
import sys
|
||||||
import six
|
|
||||||
from importlib import import_module
|
from importlib import import_module
|
||||||
|
|
||||||
|
from django.utils import six
|
||||||
from django.utils.module_loading import import_string
|
from django.utils.module_loading import import_string
|
||||||
from django.core.exceptions import ImproperlyConfigured
|
from django.core.exceptions import ImproperlyConfigured
|
||||||
from django.conf import settings
|
from django.conf import settings
|
||||||
|
|
|
@ -1,9 +1,9 @@
|
||||||
from __future__ import absolute_import
|
from __future__ import absolute_import
|
||||||
|
|
||||||
import json
|
import json
|
||||||
import six
|
|
||||||
import warnings
|
import warnings
|
||||||
|
|
||||||
|
from django.utils import six
|
||||||
from django.utils.six.moves.urllib.parse import urlparse
|
from django.utils.six.moves.urllib.parse import urlparse
|
||||||
|
|
||||||
from elasticsearch import Elasticsearch, NotFoundError
|
from elasticsearch import Elasticsearch, NotFoundError
|
||||||
|
|
Ładowanie…
Reference in New Issue