1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/weblate_ynh.git synced 2024-10-01 13:35:04 +02:00

fix ImportError: No module named backports

This commit is contained in:
Jean-Baptiste Holcroft 2018-10-15 22:30:24 +02:00
parent 69b0e9ddd2
commit a49d61e52e
3 changed files with 5 additions and 1 deletions

View file

@ -8,7 +8,7 @@
"description": {
"en": "A translation platform using Git and Python"
},
"version": "3.1.1~ynh2",
"version": "3.1.1~ynh3",
"url": "https://weblate.org",
"license": "AGPL-3.0",
"maintainer": {

View file

@ -198,6 +198,8 @@ virtualenv "${final_path}/venv"
pip install pytz python-bidi PyYaML Babel pyuca pylibravatar pydns psycopg2-binary python-memcached phply
# specific to YunoHost package:
pip install django_sendmail_backend
# Fix ImportError: No module named backports
pip install backports.csv
)
#=================================================

View file

@ -218,6 +218,8 @@ fi
pip install pytz python-bidi PyYaML Babel pyuca pylibravatar pydns psycopg2-binary python-memcached phply
# specific to YunoHost package:
pip install django_sendmail_backend
# Fix ImportError: No module named backports
pip install backports.csv
)
#=================================================