Pin version requirements, add more tasks to makefile, specify python

version in manage.py shebang
This commit is contained in:
Raphael Michel
2015-05-15 22:54:12 +02:00
parent 59f8930785
commit d1473b9958
7 changed files with 20 additions and 13 deletions

View File

@@ -1,7 +1,14 @@
all: localecompile
all: localecompile staticfiles
production: localecompile staticfiles compress
localecompile:
django-admin compilemessages
./manage.py compilemessages
localegen:
django-admin makemessages --all
./manage.py makemessages --all
staticfiles:
./manage.py collectstatic --noinput
compress:
./manage.py compress

View File

@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3
import os
import sys

View File

@@ -1,2 +1,2 @@
chardet
chardet>=2.3,<3

View File

@@ -1 +1 @@
django-debug-toolbar>=1.3.0
django-debug-toolbar>=1.3.0,<2.0

View File

@@ -1,2 +1,2 @@
paypalrestsdk
paypalrestsdk>=1.9,<1.10,<2.0

View File

@@ -1,12 +1,12 @@
# Functional requirements
Django==1.8.1
python-dateutil
python-dateutil>=2.4,<2.5
pytz
django-bootstrap3
django-bootstrap3>=5.4,<5.5
-e git+https://github.com/pretix/django-formset-js.git@master#egg=django-formset-js
-e git+https://github.com/pretix/cleanerversion.git@pretix#egg=cleanerversion
django-compressor
reportlab
django-compressor>=1.5,<2.0
reportlab>=3.1.44,<3.2
-e git+https://github.com/pretix/PyPDF2.git@pretix#egg=PyPDF2
# Deployment / static file compilation requirements
@@ -14,4 +14,4 @@ BeautifulSoup4
html5lib
slimit
lxml
dj-static
dj-static==0.0.6

View File

@@ -1,2 +1,2 @@
stripe
stripe>=1.22,<1.23