From 33fc8d00e2544fceaabf17447cb7cb5bc1311644 Mon Sep 17 00:00:00 2001 From: Oksana Shadura Date: Thu, 2 Nov 2023 16:35:14 +0100 Subject: [PATCH 1/6] Try to enable 3.8 and 3.9 python ffor cc7 --- .github/workflows/gh-ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/gh-ci.yml b/.github/workflows/gh-ci.yml index 51828ad..85dbb25 100644 --- a/.github/workflows/gh-ci.yml +++ b/.github/workflows/gh-ci.yml @@ -25,12 +25,12 @@ jobs: exclude: - image_dir: base-cc7 python: 3.8 - - image_dir: base-almalinux8 - python: 3.8 + #- image_dir: base-almalinux8 + # python: 3.8 - image_dir: base-cc7 python: 3.9 - - image_dir: base-almalinux8 - python: 3.9 + #- image_dir: base-almalinux8 + # python: 3.9 name: ${{ matrix.image_dir }}-${{ matrix.python }} runs-on: ubuntu-latest steps: From a1b17a58f2904d029d0175ee94711b107a06e8c9 Mon Sep 17 00:00:00 2001 From: Oksana Shadura Date: Thu, 2 Nov 2023 16:57:07 +0100 Subject: [PATCH 2/6] Current version of mamabaforge has support of trustore for python 3.10+ From release notes: Add support for truststore to the ssl_verify config option, enabling conda to use the operating system certificate store (requires Python 3.10 or later). (#13075 and #13149) --- base-almalinux8/Dockerfile | 2 +- base-cc7/Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/base-almalinux8/Dockerfile b/base-almalinux8/Dockerfile index 1f53cba..24086d6 100644 --- a/base-almalinux8/Dockerfile +++ b/base-almalinux8/Dockerfile @@ -7,7 +7,7 @@ ENV PYTHON_VERSION=${python} RUN yum -y update \ && yum -y install git curl bzip2 libgfortran which \ - && curl -sSL https://github.com/conda-forge/miniforge/releases/download/23.3.1-1/Mambaforge-Linux-x86_64.sh -o /tmp/mambaforge.sh \ + && curl -sSL https://github.com/conda-forge/miniforge/releases/download/23.1.0-0/Mambaforge-Linux-x86_64.sh -o /tmp/mambaforge.sh \ && bash /tmp/mambaforge.sh -bfp /usr/local \ && rm -rf /tmp/mambaforge.sh \ && mamba update mamba \ diff --git a/base-cc7/Dockerfile b/base-cc7/Dockerfile index b8faa3f..2a201c5 100644 --- a/base-cc7/Dockerfile +++ b/base-cc7/Dockerfile @@ -7,7 +7,7 @@ ENV PYTHON_VERSION=${python} RUN yum -y update \ && yum -y install git curl bzip2 libgfortran which \ - && curl -sSL https://github.com/conda-forge/miniforge/releases/download/23.3.1-1/Mambaforge-Linux-x86_64.sh -o /tmp/mambaforge.sh \ + && curl -sSL https://github.com/conda-forge/miniforge/releases/download/23.1.0-0/Mambaforge-Linux-x86_64.sh -o /tmp/mambaforge.sh \ && bash /tmp/mambaforge.sh -bfp /usr/local \ && rm -rf /tmp/mambaforge.sh \ && mamba update mamba \ From 146f4d3e46b8cc8230b2d5660c9a2f435cf486c6 Mon Sep 17 00:00:00 2001 From: Oksana Shadura Date: Thu, 2 Nov 2023 17:12:02 +0100 Subject: [PATCH 3/6] Try lower version --- base-almalinux8/Dockerfile | 2 +- base-cc7/Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/base-almalinux8/Dockerfile b/base-almalinux8/Dockerfile index 24086d6..569d18f 100644 --- a/base-almalinux8/Dockerfile +++ b/base-almalinux8/Dockerfile @@ -7,7 +7,7 @@ ENV PYTHON_VERSION=${python} RUN yum -y update \ && yum -y install git curl bzip2 libgfortran which \ - && curl -sSL https://github.com/conda-forge/miniforge/releases/download/23.1.0-0/Mambaforge-Linux-x86_64.sh -o /tmp/mambaforge.sh \ + && curl -sSL https://github.com/conda-forge/miniforge/releases/download/22.9.0-1/Mambaforge-Linux-x86_64.sh -o /tmp/mambaforge.sh \ && bash /tmp/mambaforge.sh -bfp /usr/local \ && rm -rf /tmp/mambaforge.sh \ && mamba update mamba \ diff --git a/base-cc7/Dockerfile b/base-cc7/Dockerfile index 2a201c5..9886cfd 100644 --- a/base-cc7/Dockerfile +++ b/base-cc7/Dockerfile @@ -7,7 +7,7 @@ ENV PYTHON_VERSION=${python} RUN yum -y update \ && yum -y install git curl bzip2 libgfortran which \ - && curl -sSL https://github.com/conda-forge/miniforge/releases/download/23.1.0-0/Mambaforge-Linux-x86_64.sh -o /tmp/mambaforge.sh \ + && curl -sSL https://github.com/conda-forge/miniforge/releases/download/22.9.0-1/Mambaforge-Linux-x86_64.sh -o /tmp/mambaforge.sh \ && bash /tmp/mambaforge.sh -bfp /usr/local \ && rm -rf /tmp/mambaforge.sh \ && mamba update mamba \ From 80c9bff5b4e27da574e4712d1bb4ea4684d00c4e Mon Sep 17 00:00:00 2001 From: Oksana Shadura Date: Thu, 2 Nov 2023 17:17:57 +0100 Subject: [PATCH 4/6] Try lower version: 4.12.0 (pre-calver) --- base-almalinux8/Dockerfile | 2 +- base-cc7/Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/base-almalinux8/Dockerfile b/base-almalinux8/Dockerfile index 569d18f..9f86513 100644 --- a/base-almalinux8/Dockerfile +++ b/base-almalinux8/Dockerfile @@ -7,7 +7,7 @@ ENV PYTHON_VERSION=${python} RUN yum -y update \ && yum -y install git curl bzip2 libgfortran which \ - && curl -sSL https://github.com/conda-forge/miniforge/releases/download/22.9.0-1/Mambaforge-Linux-x86_64.sh -o /tmp/mambaforge.sh \ + && curl -sSL https://github.com/conda-forge/miniforge/releases/download/4.12.0/Mambaforge-Linux-x86_64.sh -o /tmp/mambaforge.sh \ && bash /tmp/mambaforge.sh -bfp /usr/local \ && rm -rf /tmp/mambaforge.sh \ && mamba update mamba \ diff --git a/base-cc7/Dockerfile b/base-cc7/Dockerfile index 9886cfd..705edf0 100644 --- a/base-cc7/Dockerfile +++ b/base-cc7/Dockerfile @@ -7,7 +7,7 @@ ENV PYTHON_VERSION=${python} RUN yum -y update \ && yum -y install git curl bzip2 libgfortran which \ - && curl -sSL https://github.com/conda-forge/miniforge/releases/download/22.9.0-1/Mambaforge-Linux-x86_64.sh -o /tmp/mambaforge.sh \ + && curl -sSL https://github.com/conda-forge/miniforge/releases/download/4.12.0/Mambaforge-Linux-x86_64.sh -o /tmp/mambaforge.sh \ && bash /tmp/mambaforge.sh -bfp /usr/local \ && rm -rf /tmp/mambaforge.sh \ && mamba update mamba \ From a8bebfde4c157f5eb162b293a71f2812c7523dd4 Mon Sep 17 00:00:00 2001 From: Oksana Shadura Date: Thu, 2 Nov 2023 17:23:49 +0100 Subject: [PATCH 5/6] Try lower version: 4.11.0 (pre-calver) --- base-almalinux8/Dockerfile | 2 +- base-cc7/Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/base-almalinux8/Dockerfile b/base-almalinux8/Dockerfile index 9f86513..7cc6fe4 100644 --- a/base-almalinux8/Dockerfile +++ b/base-almalinux8/Dockerfile @@ -7,7 +7,7 @@ ENV PYTHON_VERSION=${python} RUN yum -y update \ && yum -y install git curl bzip2 libgfortran which \ - && curl -sSL https://github.com/conda-forge/miniforge/releases/download/4.12.0/Mambaforge-Linux-x86_64.sh -o /tmp/mambaforge.sh \ + && curl -sSL https://github.com/conda-forge/miniforge/releases/download/4.11.0/Mambaforge-Linux-x86_64.sh -o /tmp/mambaforge.sh \ && bash /tmp/mambaforge.sh -bfp /usr/local \ && rm -rf /tmp/mambaforge.sh \ && mamba update mamba \ diff --git a/base-cc7/Dockerfile b/base-cc7/Dockerfile index 705edf0..8f54f62 100644 --- a/base-cc7/Dockerfile +++ b/base-cc7/Dockerfile @@ -7,7 +7,7 @@ ENV PYTHON_VERSION=${python} RUN yum -y update \ && yum -y install git curl bzip2 libgfortran which \ - && curl -sSL https://github.com/conda-forge/miniforge/releases/download/4.12.0/Mambaforge-Linux-x86_64.sh -o /tmp/mambaforge.sh \ + && curl -sSL https://github.com/conda-forge/miniforge/releases/download/4.11.0/Mambaforge-Linux-x86_64.sh -o /tmp/mambaforge.sh \ && bash /tmp/mambaforge.sh -bfp /usr/local \ && rm -rf /tmp/mambaforge.sh \ && mamba update mamba \ From 5f2e2be2fb429d201125d05a2de1fea2303fb9d1 Mon Sep 17 00:00:00 2001 From: Oksana Shadura Date: Thu, 2 Nov 2023 17:29:22 +0100 Subject: [PATCH 6/6] Last attempt, lets try mambaforge version we used before --- base-almalinux8/Dockerfile | 2 +- base-cc7/Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/base-almalinux8/Dockerfile b/base-almalinux8/Dockerfile index 7cc6fe4..abaea68 100644 --- a/base-almalinux8/Dockerfile +++ b/base-almalinux8/Dockerfile @@ -7,7 +7,7 @@ ENV PYTHON_VERSION=${python} RUN yum -y update \ && yum -y install git curl bzip2 libgfortran which \ - && curl -sSL https://github.com/conda-forge/miniforge/releases/download/4.11.0/Mambaforge-Linux-x86_64.sh -o /tmp/mambaforge.sh \ + && curl -sSL https://github.com/conda-forge/miniforge/releases/download/4.10.3-7/Mambaforge-Linux-x86_64.sh -o /tmp/mambaforge.sh \ && bash /tmp/mambaforge.sh -bfp /usr/local \ && rm -rf /tmp/mambaforge.sh \ && mamba update mamba \ diff --git a/base-cc7/Dockerfile b/base-cc7/Dockerfile index 8f54f62..20b5c7c 100644 --- a/base-cc7/Dockerfile +++ b/base-cc7/Dockerfile @@ -7,7 +7,7 @@ ENV PYTHON_VERSION=${python} RUN yum -y update \ && yum -y install git curl bzip2 libgfortran which \ - && curl -sSL https://github.com/conda-forge/miniforge/releases/download/4.11.0/Mambaforge-Linux-x86_64.sh -o /tmp/mambaforge.sh \ + && curl -sSL https://github.com/conda-forge/miniforge/releases/download/4.10.3-7/Mambaforge-Linux-x86_64.sh -o /tmp/mambaforge.sh \ && bash /tmp/mambaforge.sh -bfp /usr/local \ && rm -rf /tmp/mambaforge.sh \ && mamba update mamba \