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
This commit is contained in:
Min RK
2023-06-09 13:58:32 +02:00
parent e6fe1f2ddf
commit 4f0179a84c

View File

@@ -148,8 +148,8 @@ MAMBAFORGE_CHECKSUMS = {
# minimum versions of packages # minimum versions of packages
MINIMUM_VERSIONS = { MINIMUM_VERSIONS = {
# if conda/mamba/pip are lower than this, upgrade them before installing the user packages # if conda/mamba/pip are lower than this, upgrade them before installing the user packages
"mamba": "0.16.0", "mamba": "1.4.2",
"conda": "4.10", "conda": "23.3.1",
"pip": "23.1.2", "pip": "23.1.2",
# minimum Python version (if not matched, abort to avoid big disruptive updates) # minimum Python version (if not matched, abort to avoid big disruptive updates)
"python": "3.9", "python": "3.9",