Update django-statici18n to 1.3

This commit is contained in:
Raphael Michel
2017-01-23 00:09:57 +01:00
parent 78fc58cc93
commit aba7652aee
4 changed files with 2 additions and 5 deletions

View File

@@ -16,7 +16,6 @@ compress:
jsi18n: localecompile
./manage.py compilejsi18n
./manage.py compilejsi18n -l de-informal
test:
py.test tests

View File

@@ -8,6 +8,5 @@ class Command(BaseCommand):
def handle(self, *args, **options):
call_command('compilemessages', verbosity=1, interactive=False)
call_command('compilejsi18n', verbosity=1, interactive=False)
call_command('compilejsi18n', locale='de-informal', verbosity=1, interactive=False)
call_command('collectstatic', verbosity=1, interactive=False)
call_command('compress', verbosity=1, interactive=False)

View File

@@ -15,7 +15,7 @@ python-u2flib-server==4.*
django-formtools==1.0
celery==4.0.2
kombu==4.0.2
django-statici18n==1.2.*
django-statici18n==1.3.*
inlinestyler==0.2.*
BeautifulSoup4
html5lib<0.99999999,>=0.999 # version requirement by bleach

View File

@@ -30,7 +30,6 @@ class CustomBuild(build):
management.call_command('compilemessages', verbosity=1, interactive=False)
management.call_command('compilejsi18n', verbosity=1, interactive=False)
management.call_command('compilejsi18n', locale='de-informal', verbosity=1, interactive=False)
management.call_command('collectstatic', verbosity=1, interactive=False)
management.call_command('compress', verbosity=1, interactive=False)
build.run(self)
@@ -78,7 +77,7 @@ setup(
'django-formtools==1.0',
'celery==4.0.2',
'kombu==4.0.2',
'django-statici18n==1.2.*',
'django-statici18n==1.3.*',
'inlinestyler==0.2.*',
'BeautifulSoup4',
'html5lib<0.99999999,>=0.999',