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:
parent
69b0e9ddd2
commit
a49d61e52e
3 changed files with 5 additions and 1 deletions
|
@ -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": {
|
||||
|
|
|
@ -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
|
||||
)
|
||||
|
||||
#=================================================
|
||||
|
|
|
@ -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
|
||||
)
|
||||
|
||||
#=================================================
|
||||
|
|
Loading…
Reference in a new issue