1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/fittrackee_ynh.git synced 2024-09-03 18:36:16 +02:00

fix cryptography

This commit is contained in:
Thomas 2023-08-14 09:23:45 +02:00 committed by GitHub
parent 9c094f9439
commit cecaf60b94
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 0 deletions

View file

@ -52,6 +52,8 @@ ynh_script_progression --message="Installing Python dependencies..." --weight=3
pushd $install_dir
python3 -m venv $install_dir/venv
source $install_dir/venv/bin/activate
# Upgrade pip for Cryptography to work
ynh_exec_warn_less pip install --upgrade pip
ynh_exec_warn_less pip install fittrackee==$fittrackee_version toml pyyaml
popd

View file

@ -63,6 +63,8 @@ ynh_secure_remove $install_dir/.venv
pushd $install_dir
python3 -m venv $install_dir/venv
source $install_dir/venv/bin/activate
# Upgrade pip for Cryptography to work
ynh_exec_warn_less pip install --upgrade pip
ynh_exec_warn_less pip install fittrackee==$fittrackee_version toml pyyaml
popd