Skip to content

Commit

Permalink
Update construct.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
hmaarrfk authored Dec 13, 2023
1 parent a781a24 commit d5b1fdf
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion Miniforge3/construct.yaml
Original file line number Diff line number Diff line change
@@ -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"%}

Expand All @@ -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
Expand Down

0 comments on commit d5b1fdf

Please sign in to comment.