From 4d782fca8cd0f88f27d8c55a5243eb57b3085e8d Mon Sep 17 00:00:00 2001 From: Scott Carda Date: Mon, 11 Sep 2023 14:30:41 -0700 Subject: [PATCH 1/2] updated deps --- src/Python/requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Python/requirements.txt b/src/Python/requirements.txt index b43a11e295..8a68a8b50a 100644 --- a/src/Python/requirements.txt +++ b/src/Python/requirements.txt @@ -5,7 +5,7 @@ nbconvert==7.0.0 notebook==6.5.2 numpy==1.22.0 pytest==7.2.0 -pygments==2.12.0 # to avoid high-severity issue. +pygments==2.15.0 # to avoid high-severity issue. pyzmq==25.0.0 qutip==4.7.2 selenium==4.2.0 From f10d7ff2452c3d0b7292168ecc196d0f53e1586a Mon Sep 17 00:00:00 2001 From: Scott Carda Date: Tue, 12 Sep 2023 09:56:20 -0700 Subject: [PATCH 2/2] update cryptography --- images/test-environments/linux/Dockerfile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/images/test-environments/linux/Dockerfile b/images/test-environments/linux/Dockerfile index 8d5d3fd26f..a7786e42e5 100644 --- a/images/test-environments/linux/Dockerfile +++ b/images/test-environments/linux/Dockerfile @@ -14,8 +14,6 @@ RUN curl -LO "http://repo.continuum.io/miniconda/Miniconda3-${CONDA_VER}-Linux-$ bash Miniconda3-${CONDA_VER}-Linux-${OS_TYPE}.sh -p /miniconda -b && \ rm Miniconda3-${CONDA_VER}-Linux-${OS_TYPE}.sh -RUN ./miniconda/bin/conda update -y certifi - ARG UBUNTU_VER # Download the Microsoft repository GPG keys RUN wget -q "https://packages.microsoft.com/config/ubuntu/${UBUNTU_VER}/packages-microsoft-prod.deb" @@ -39,3 +37,6 @@ RUN apt-get update && \ # We clean the apt cache at the end of each apt command so that the caches # don't get stored in each layer. apt-get clean && rm -rf /var/lib/apt/lists/ + +RUN ./miniconda/bin/conda update -y certifi +RUN ./miniconda/bin/conda update -y cryptography