1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/pgadmin_ynh.git synced 2024-09-03 19:56:38 +02:00

Bump to v7.8. automatically use upstream version in scripts.

This commit is contained in:
Félix Piédallu 2024-01-31 16:22:29 +01:00
parent 6ee06b09d8
commit f0965a67c3
2 changed files with 3 additions and 2 deletions

View file

@ -7,7 +7,7 @@ name = "pgAdmin4"
description.en = "Manage PostgreSQL databases over the web"
description.fr = "Application web de gestion des bases de données PostgreSQL"
version = "7.7~ynh2"
version = "7.8~ynh1"
maintainers = ["Josué Tille"]

View file

@ -25,5 +25,6 @@ ynh_use_venv() {
}
_install_pgadmin_pip() {
ynh_exec_as "$app" "$venvpy" -m pip install --upgrade "pgadmin4==7.7"
version=$(ynh_app_upstream_version)
ynh_exec_as "$app" "$venvpy" -m pip install --upgrade "pgadmin4==$version"
}