diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2018-04-23 16:01:45 +0200 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2018-06-12 08:43:58 +0200 |
commit | 779b59a5cbb43e8362419eb6973ee8ec154b7e91 (patch) | |
tree | 9b95d0b9bccadef756f0b93c06b04e9f719086c0 /install/ishtar-install | |
parent | 0dc228019b280412e6676b08c2c17897ab4749d1 (diff) | |
download | Ishtar-779b59a5cbb43e8362419eb6973ee8ec154b7e91.tar.bz2 Ishtar-779b59a5cbb43e8362419eb6973ee8ec154b7e91.zip |
Upgrade django-ajax-select version in installation script
Diffstat (limited to 'install/ishtar-install')
-rwxr-xr-x | install/ishtar-install | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/install/ishtar-install b/install/ishtar-install index 7a41f4e8e..0c3300361 100755 --- a/install/ishtar-install +++ b/install/ishtar-install @@ -363,7 +363,7 @@ EOF ( set -x; $sh_c 'pip install secretary==0.2.14' ) cecho y "Installing python-ajax-select (available version in Debian is not compatible with backported Django)" echo ""; - ( set -x; $sh_c 'pip install django-ajax-selects==1.4.3' ) + ( set -x; $sh_c 'pip install django-ajax-selects==1.6.0' ) cecho y "Installing weasyprint" echo ""; ( set -x; $sh_c 'pip install WeasyPrint==0.41' ) @@ -412,7 +412,7 @@ EOF python-tidylib python-lxml python-imaging python-html5lib \ python-psycopg2 python-gdal gettext python-unicodecsv memcached \ python-django-extra-views python-memcache python-dbf python-markdown \ - python-reportlab django-ajax-selects python-django-extensions python-unidecode' ) + python-reportlab python-django-extensions python-unidecode' ) echo "-------------------------------------------------------------------------------"; cecho y "Installing django-simple-history" echo ""; @@ -424,6 +424,9 @@ EOF cecho y "Installing weasyprint" echo ""; ( set -x; $sh_c 'pip install WeasyPrint==0.41' ) + cecho y "Installing python-ajax-select - Debian version is too old..." + echo ""; + ( set -x; $sh_c 'pip install django-ajax-selects==1.6.0' ) cecho y "Installing django-formtools - Debian version is too old..." echo ""; ( set -x; $sh_c 'pip install django-formtools==2.1' ) |