From c4befdfa54b2f112c10a0cacae8221267a6f4103 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?F=C3=A9lix=20Pi=C3=A9dallu?= Date: Sun, 14 Jul 2024 16:22:32 +0200 Subject: [PATCH] Remove fix --- scripts/_common.sh | 3 --- 1 file changed, 3 deletions(-) diff --git a/scripts/_common.sh b/scripts/_common.sh index bbf5475..fc33fb2 100644 --- a/scripts/_common.sh +++ b/scripts/_common.sh @@ -27,9 +27,6 @@ _ynh_caerp_build_python() { python_venv_site_packages=$(_ynh_python_venv_get_site_packages_dir -d "$install_dir/venv") pushd "$install_dir/caerp" 2>&1 - # Might be a fix for `AttributeError: module 'lib' has no attribute 'X509_V_FLAG_NOTIFY_POLICY'` - ynh_exec_as "$app" "$install_dir/venv/bin/python3" -m pip uninstall cryptography - ynh_exec_as "$app" "$install_dir/venv/bin/python3" -m pip install -r requirements.txt ynh_exec_as "$app" "$install_dir/venv/bin/python3" ./setup.py install 2>&1 popd 2>&1