From d5b1fdf8138dfcc48ab0d6cea3094234a2226272 Mon Sep 17 00:00:00 2001 From: Mark Harfouche Date: Tue, 12 Dec 2023 23:50:46 -0500 Subject: [PATCH] Update construct.yaml --- Miniforge3/construct.yaml | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/Miniforge3/construct.yaml b/Miniforge3/construct.yaml index ecc9747e..470700af 100644 --- a/Miniforge3/construct.yaml +++ b/Miniforge3/construct.yaml @@ -1,5 +1,5 @@ {% set name = os.environ.get("MINIFORGE_NAME", "Miniforge3") %} -{% set version = os.environ.get("MINIFORGE_VERSION", "23.11.0-0") %} +{% set version = os.environ.get("MINIFORGE_VERSION", "23.12.0-0") %} {% set conda_libmamba_solver_version = "23.12.0"%} {% set mamba_version = "1.5.5"%} @@ -24,6 +24,18 @@ license_file: ../LICENSE initialize_conda: True initialize_by_default: False +user_requested_specs: +{% if name.endswith("pypy3") %} + - python 3.9.* *_pypy +{% else %} + - python 3.10.* +{% endif %} + - pip + - conda >={{ version.split("-")[0] }} + # Omit conda-libmamba-solver so that conda is free to remove it later + - mamba >={{ mamba_version }} + - miniforge_console_shortcut 1.* # [win] + specs: {% if name.endswith("pypy3") %} - python 3.9.* *_pypy