Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Enforce system requirements, upgrade to conda 24.7.1, mamba 1.5.9, bump Docker image for linux-64 #626

Merged
10 changes: 8 additions & 2 deletions Miniforge3/construct.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{% set name = os.environ.get("MINIFORGE_NAME", "Miniforge3") %}
{% set version = os.environ.get("MINIFORGE_VERSION", "24.5.0-0") %}
{% set conda_libmamba_solver_version = "24.1.0"%}
{% set version = os.environ.get("MINIFORGE_VERSION", "24.7.1-0") %}
{% set conda_libmamba_solver_version = "24.7.0"%}
{% set mamba_version = "1.5.8"%}

name: {{ name }}
Expand Down Expand Up @@ -49,5 +49,11 @@ specs:
- pip
- miniforge_console_shortcut 1.* # [win]

{% if name.startswith("Mambaforge") %}
pre_install: mambaforge_deprecation.sh # [unix]
pre_install: mambaforge_deprecation.bat # [win]
{% endif %}
hmaarrfk marked this conversation as resolved.
Show resolved Hide resolved

virtual_specs:
- __glibc >=2.17 # [linux]
- __osx >=10.13 # [osx]
2 changes: 1 addition & 1 deletion scripts/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ echo "***** Install constructor *****"
mamba install --yes \
--channel conda-forge --override-channels \
jinja2 curl libarchive \
"constructor>=3.4.5"
"constructor>=3.9.3"

if [[ "$(uname)" == "Darwin" ]]; then
mamba install --yes \
Expand Down
Loading