forked from django-cms/django-filer
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master_pbs' into BEN-2875_increase_filer_file_size
- Loading branch information
Showing
6 changed files
with
64 additions
and
35 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
# -*- coding: utf-8 -*- | ||
# version string following pep-0440 | ||
__version__ = '0.9.112' # pragma: nocover | ||
__version__ = '0.9.116' # pragma: nocover | ||
|
||
default_app_config = 'filer.apps.FilerConfig' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
from django.db import migrations, models | ||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('filer', '0005_default_alt_text_size'), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name='Image', | ||
name='default_caption', | ||
field=models.TextField(null=True), # Use TextField to allow unlimited length | ||
), | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
from setuptools import setup, find_packages | ||
import os | ||
|
||
from setuptools import setup, find_packages | ||
|
||
try: | ||
from setuptest import test | ||
except ImportError: | ||
|
@@ -25,8 +26,9 @@ def read(fname): | |
author_email='[email protected]', | ||
packages=find_packages(), | ||
install_requires=( | ||
'django-js-asset==2.0.0', | ||
'django>=1.11,<3.0', | ||
'django-mptt>=0.6,<1.0', # the exact version depends on Django | ||
'django-mptt==0.11.1', # the exact version depends on Django | ||
'django_polymorphic>=0.7,<2.2', | ||
'easy-thumbnails>=2,<3.0', | ||
'Unidecode>=0.04,<1.2', | ||
|