From da9ad0b8bf9c7501ec2e4c39236b3228f391b7cf Mon Sep 17 00:00:00 2001 From: David Murphy Date: Thu, 19 Sep 2024 14:05:23 -0600 Subject: [PATCH] Force Arch git deps to use cryptography 42.0.0 --- bootstrap-salt.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/bootstrap-salt.sh b/bootstrap-salt.sh index 38a76ab..2329f91 100755 --- a/bootstrap-salt.sh +++ b/bootstrap-salt.sh @@ -5734,6 +5734,10 @@ install_arch_linux_git_deps() { CONFIG_SALT_FUNC="config_salt" fi + _arch_dep="cryptography==42.0.0" + echodebug "Running '${_PY_EXE} -m pip install --upgrade ${_arch_dep}'" + ${_PY_EXE} -m pip install --upgrade "${_arch_dep}" + return 0 }