From 6e41f12af0ee754ff6f8d802a67b0fc506e89684 Mon Sep 17 00:00:00 2001 From: Amir MOHAMMADI <amir.mohammadi@idiap.ch> Date: Tue, 5 Oct 2021 14:01:42 +0200 Subject: [PATCH] pin mamba and boa --- bob/devtools/bootstrap.py | 11 ++++++----- conda/meta.yaml | 4 ++-- 2 files changed, 8 insertions(+), 7 deletions(-) diff --git a/bob/devtools/bootstrap.py b/bob/devtools/bootstrap.py index cd027e2e..6bca51c0 100644 --- a/bob/devtools/bootstrap.py +++ b/bob/devtools/bootstrap.py @@ -506,7 +506,8 @@ if __name__ == "__main__": conda_version = "4" conda_build_version = "3" - conda_verify_version = "3" + mamba_version = "0.16" + boa_version = "0.6" conda_verbosity = [] # if args.verbose >= 2: @@ -540,8 +541,8 @@ if __name__ == "__main__": "python", "conda=%s" % conda_version, "conda-build=%s" % conda_build_version, - "mamba", - "boa", + "mamba=%s" % mamba_version, + "boa=%s" % boa_version, "click", "twine", # required for checking readme of python (zip) distro ] @@ -562,8 +563,8 @@ if __name__ == "__main__": "python", "conda=%s" % conda_version, "conda-build=%s" % conda_build_version, - "mamba", - "boa", + "mamba=%s" % mamba_version, + "boa=%s" % boa_version, "twine", # required for checking readme of python (zip) distro ] + should_install_git diff --git a/conda/meta.yaml b/conda/meta.yaml index ffdc44ce..9337f23c 100644 --- a/conda/meta.yaml +++ b/conda/meta.yaml @@ -33,8 +33,8 @@ requirements: - click-plugins - conda=4 - conda-build=3 - - mamba - - boa + - mamba=0.16 + - boa=0.6 - certifi - docformatter - git # [linux] -- GitLab