mirror of
https://github.com/Hopiu/wagtail.git
synced 2026-05-17 19:51:11 +00:00
Removed django-compressor
This commit is contained in:
parent
c928338cec
commit
be82fa975d
6 changed files with 0 additions and 9 deletions
|
|
@ -73,7 +73,6 @@ Apps (``settings.py``)
|
|||
'wagtail.wagtailadmin',
|
||||
'wagtail.wagtailcore',
|
||||
|
||||
'compressor',
|
||||
'taggit',
|
||||
'modelcluster',
|
||||
|
||||
|
|
@ -422,7 +421,6 @@ These two files should reside in your project directory (``myproject/myproject/`
|
|||
STATICFILES_FINDERS = [
|
||||
'django.contrib.staticfiles.finders.FileSystemFinder',
|
||||
'django.contrib.staticfiles.finders.AppDirectoriesFinder',
|
||||
'compressor.finders.CompressorFinder',
|
||||
]
|
||||
|
||||
STATICFILES_DIRS = [
|
||||
|
|
|
|||
|
|
@ -29,7 +29,6 @@ In your settings file, add the following apps to ``INSTALLED_APPS``::
|
|||
'wagtail.wagtailcore',
|
||||
|
||||
'modelcluster',
|
||||
'compressor',
|
||||
'taggit',
|
||||
|
||||
Add the following entries to ``MIDDLEWARE_CLASSES``::
|
||||
|
|
|
|||
1
setup.py
1
setup.py
|
|
@ -22,7 +22,6 @@ except ImportError:
|
|||
|
||||
install_requires = [
|
||||
"Django>=1.8.1,<1.10",
|
||||
"django-compressor>=1.4",
|
||||
"django-modelcluster>=1.1,<1.2",
|
||||
"django-taggit>=0.17.5",
|
||||
"django-treebeard==3.0",
|
||||
|
|
|
|||
1
tox.ini
1
tox.ini
|
|
@ -19,7 +19,6 @@ basepython =
|
|||
py35: python3.5
|
||||
|
||||
deps =
|
||||
django-compressor>=1.4
|
||||
django-modelcluster>=1.1b1
|
||||
django-taggit>=0.17.5
|
||||
django-treebeard==3.0
|
||||
|
|
|
|||
|
|
@ -40,7 +40,6 @@ INSTALLED_APPS = [
|
|||
'wagtail.wagtailcore',
|
||||
|
||||
'modelcluster',
|
||||
'compressor',
|
||||
'taggit',
|
||||
|
||||
'django.contrib.admin',
|
||||
|
|
@ -119,7 +118,6 @@ USE_TZ = True
|
|||
STATICFILES_FINDERS = [
|
||||
'django.contrib.staticfiles.finders.FileSystemFinder',
|
||||
'django.contrib.staticfiles.finders.AppDirectoriesFinder',
|
||||
'compressor.finders.CompressorFinder',
|
||||
]
|
||||
|
||||
STATICFILES_DIRS = [
|
||||
|
|
|
|||
|
|
@ -31,7 +31,6 @@ STATIC_ROOT = STATIC_ROOT
|
|||
|
||||
STATICFILES_FINDERS = (
|
||||
'django.contrib.staticfiles.finders.AppDirectoriesFinder',
|
||||
'compressor.finders.CompressorFinder',
|
||||
)
|
||||
|
||||
USE_TZ = True
|
||||
|
|
@ -111,7 +110,6 @@ INSTALLED_APPS = (
|
|||
'wagtail.wagtailcore',
|
||||
|
||||
'taggit',
|
||||
'compressor',
|
||||
'rest_framework',
|
||||
|
||||
'django.contrib.admin',
|
||||
|
|
|
|||
Loading…
Reference in a new issue