mirror of
https://github.com/pretix/pretix.git
synced 2026-04-28 00:02:37 +00:00
Pin version requirements, add more tasks to makefile, specify python
version in manage.py shebang
This commit is contained in:
13
src/Makefile
13
src/Makefile
@@ -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
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
#!/usr/bin/env python
|
||||
#!/usr/bin/env python3
|
||||
import os
|
||||
import sys
|
||||
|
||||
|
||||
@@ -1,2 +1,2 @@
|
||||
chardet
|
||||
chardet>=2.3,<3
|
||||
|
||||
|
||||
@@ -1 +1 @@
|
||||
django-debug-toolbar>=1.3.0
|
||||
django-debug-toolbar>=1.3.0,<2.0
|
||||
|
||||
@@ -1,2 +1,2 @@
|
||||
paypalrestsdk
|
||||
paypalrestsdk>=1.9,<1.10,<2.0
|
||||
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -1,2 +1,2 @@
|
||||
stripe
|
||||
stripe>=1.22,<1.23
|
||||
|
||||
|
||||
Reference in New Issue
Block a user