From aba7652aee7c0fdb32b134f6f9929098327f1c97 Mon Sep 17 00:00:00 2001 From: Raphael Michel Date: Mon, 23 Jan 2017 00:09:57 +0100 Subject: [PATCH] Update django-statici18n to 1.3 --- src/Makefile | 1 - src/pretix/base/management/commands/rebuild.py | 1 - src/requirements/production.txt | 2 +- src/setup.py | 3 +-- 4 files changed, 2 insertions(+), 5 deletions(-) diff --git a/src/Makefile b/src/Makefile index c23ec4792d..508958b16c 100644 --- a/src/Makefile +++ b/src/Makefile @@ -16,7 +16,6 @@ compress: jsi18n: localecompile ./manage.py compilejsi18n - ./manage.py compilejsi18n -l de-informal test: py.test tests diff --git a/src/pretix/base/management/commands/rebuild.py b/src/pretix/base/management/commands/rebuild.py index b83a7fb102..d04edd4f11 100644 --- a/src/pretix/base/management/commands/rebuild.py +++ b/src/pretix/base/management/commands/rebuild.py @@ -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) diff --git a/src/requirements/production.txt b/src/requirements/production.txt index e35d83f404..9bc8a900f9 100644 --- a/src/requirements/production.txt +++ b/src/requirements/production.txt @@ -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 diff --git a/src/setup.py b/src/setup.py index 7953175ce2..70ef2aa800 100644 --- a/src/setup.py +++ b/src/setup.py @@ -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',