From 4f0179a84cfadfcd622282134bfb0c60a2a4890d Mon Sep 17 00:00:00 2001 From: Min RK Date: Fri, 9 Jun 2023 13:58:32 +0200 Subject: [PATCH] bump minimum conda/mamba versions an old conda bug causes RemoveError: requests is a dependency of conda when installing other packages upgrading conda itself avoids this bug. It's unclear what the true minimum version is to fix this, but the important thing is that it will be upgraded if it's still the version in 0.2.0 (4.10), so pick the version from today which we know works --- tljh/installer.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tljh/installer.py b/tljh/installer.py index dc787f4..b65ddac 100644 --- a/tljh/installer.py +++ b/tljh/installer.py @@ -148,8 +148,8 @@ MAMBAFORGE_CHECKSUMS = { # minimum versions of packages MINIMUM_VERSIONS = { # if conda/mamba/pip are lower than this, upgrade them before installing the user packages - "mamba": "0.16.0", - "conda": "4.10", + "mamba": "1.4.2", + "conda": "23.3.1", "pip": "23.1.2", # minimum Python version (if not matched, abort to avoid big disruptive updates) "python": "3.9",