1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/ihatemoney_ynh.git synced 2024-09-03 19:26:15 +02:00

Update to upstream 4.1.4

The werkzeug workaround is no longer needed.
This commit is contained in:
Baptiste Jonglez 2020-07-21 16:15:51 +02:00
parent 1833ec4480
commit 07df88fb2a
2 changed files with 1 additions and 3 deletions

View file

@ -7,7 +7,7 @@
"fr": "Une application web de comptes partagés à plusieurs" "fr": "Une application web de comptes partagés à plusieurs"
}, },
"url": "http://ihatemoney.org/", "url": "http://ihatemoney.org/",
"version": "4.1.3~ynh2", "version": "4.1.4~ynh2",
"license": "free", "license": "free",
"maintainer": { "maintainer": {
"name": "Jocelyn Delalande", "name": "Jocelyn Delalande",

View file

@ -41,12 +41,10 @@ init_virtualenv () {
} }
pip_install () { pip_install () {
# Werkzeug stuff is workaround https://github.com/spiral-project/ihatemoney/issues/540
sudo /opt/yunohost/ihatemoney/venv/bin/pip install --upgrade \ sudo /opt/yunohost/ihatemoney/venv/bin/pip install --upgrade \
'gunicorn>=19.3.0' \ 'gunicorn>=19.3.0' \
'PyMySQL>=0.9,<0.10' \ 'PyMySQL>=0.9,<0.10' \
'ihatemoney>=4,<5' \ 'ihatemoney>=4,<5' \
'Werkzeug==0.16' \
} }