Removed django-compressor

This commit is contained in:
Karl Hobley 2016-01-20 10:52:02 +00:00
parent c928338cec
commit be82fa975d
6 changed files with 0 additions and 9 deletions

View file

@ -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 = [

View file

@ -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``::

View file

@ -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",

View file

@ -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

View file

@ -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 = [

View file

@ -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',