From: Nabil Ghodbane Date: Tue, 7 May 2024 08:50:33 +0000 (+0200) Subject: relax constraint about openssl for windows - Python embeds already ssl X-Git-Tag: V9_13_0~11 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;ds=sidebyside;h=30285870559be5d3f978f5e5fa43219c62b6108d;p=tools%2Fsat.git relax constraint about openssl for windows - Python embeds already ssl --- diff --git a/commands/compile.py b/commands/compile.py index 12cfbe6..d084b2d 100644 --- a/commands/compile.py +++ b/commands/compile.py @@ -502,7 +502,7 @@ def compile_product_pip(sat, :rtype: int ''' # pip needs openssl-dev. If openssl is declared in the application, we check it! - if "openssl" in config.APPLICATION.products: + if "openssl" in config.APPLICATION.products and not src.architecture.is_windows(): openssl_cfg = src.product.get_product_config(config, "openssl") if not src.product.check_installation(config, openssl_cfg): raise src.SatException(_("please install system openssl development package, it is required for products managed by pip."))