From 03bf4ee9eef12d81d3223b3bc2f084e32647c2b2 Mon Sep 17 00:00:00 2001 From: Calvin Pieters Date: Sun, 24 May 2026 19:38:19 +0300 Subject: [PATCH] Updated RMG-Py version from 3.9 to 3.11 in the Dockerfile to reflect the pin in the RMG-Py environment file Potential fix for pull request finding Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com> --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index c99345654a..6943a8476e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -40,8 +40,8 @@ RUN git clone --depth 1 --branch ${RMG_PY_BRANCH} https://github.com/ReactionMec git clone --depth 1 --branch ${ARC_BRANCH} https://github.com/ReactionMechanismGenerator/ARC.git # Create RMG-Py environment (split into separate layers for GHA cache) -# Pin python=3.9 to drastically reduce solver search space -RUN micromamba create -y -v -n rmg_env python=3.9 -f /home/mambauser/Code/RMG-Py/environment.yml && \ +# Pin python=3.11 to drastically reduce solver search space +RUN micromamba create -y -v -n rmg_env python=3.11 -f /home/mambauser/Code/RMG-Py/environment.yml && \ micromamba run -n rmg_env micromamba install -y -v -c conda-forge pyjuliacall conda && \ micromamba clean --all --yes