From a494de87350d97d15cd6d5216f79fc82f834d0f7 Mon Sep 17 00:00:00 2001 From: "Mahadik, Mukul Chandrakant" Date: Thu, 5 Oct 2023 16:47:00 -0700 Subject: [PATCH] Remove older version of cryptography package - v39.0.1 of cryptography comes with the miniconda-23.5.2 version. - However, for vulnerability fixing, cryptography had to be manually upgraded to v41.0.4. - This leaves v39.0.1 unused as a newer version is available; hence removing it. --- .docker/setup_config.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/.docker/setup_config.sh b/.docker/setup_config.sh index 0e908a529..46168e2ab 100644 --- a/.docker/setup_config.sh +++ b/.docker/setup_config.sh @@ -18,6 +18,7 @@ conda install -c conda-forge cryptography=41.0.4 wheel=0.40.0 ## Remove the old, unused packages to avoid tripping up the checker rm -rf /root/miniconda-23.1.0/pkgs/cryptography-38.0.4-py39h9ce1e76_0 rm -rf /root/miniconda-23.1.0/pkgs/wheel-0.37.1-pyhd3eb1b0_0 +rm -rf /root/miniconda-23.5.2/pkgs/cryptography-39.0.1-py39h9ce1e76_2 # Clean up the conda install conda clean -t