Skip to content

Commit

Permalink
Merge pull request #1313 from manics/upgrade-mamba
Browse files Browse the repository at this point in the history
Upgrade mamba and refreeze
  • Loading branch information
yuvipanda authored Oct 19, 2023
2 parents aa57e01 + f459142 commit 8bdf681
Show file tree
Hide file tree
Showing 17 changed files with 986 additions and 924 deletions.
204 changes: 106 additions & 98 deletions repo2docker/buildpacks/conda/environment.py-3.10-linux-64.lock

Large diffs are not rendered by default.

203 changes: 105 additions & 98 deletions repo2docker/buildpacks/conda/environment.py-3.10-linux-aarch64.lock

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion repo2docker/buildpacks/conda/environment.py-3.10.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# AUTO GENERATED FROM environment.yml, DO NOT MANUALLY MODIFY
# Generated on 2023-06-08 09:35:19 UTC
# Generated on 2023-10-14 22:06:18 UTC
channels:
- conda-forge
dependencies:
Expand Down
204 changes: 106 additions & 98 deletions repo2docker/buildpacks/conda/environment.py-3.11-linux-64.lock

Large diffs are not rendered by default.

203 changes: 105 additions & 98 deletions repo2docker/buildpacks/conda/environment.py-3.11-linux-aarch64.lock

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion repo2docker/buildpacks/conda/environment.py-3.11.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# AUTO GENERATED FROM environment.yml, DO NOT MANUALLY MODIFY
# Generated on 2023-06-08 09:35:47 UTC
# Generated on 2023-10-14 22:06:48 UTC
channels:
- conda-forge
dependencies:
Expand Down
140 changes: 73 additions & 67 deletions repo2docker/buildpacks/conda/environment.py-3.7-linux-64.lock

Large diffs are not rendered by default.

126 changes: 61 additions & 65 deletions repo2docker/buildpacks/conda/environment.py-3.7-linux-aarch64.lock

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion repo2docker/buildpacks/conda/environment.py-3.7.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# AUTO GENERATED FROM environment.yml, DO NOT MANUALLY MODIFY
# Generated on 2023-06-08 09:33:53 UTC
# Generated on 2023-10-14 22:04:48 UTC
channels:
- conda-forge
dependencies:
Expand Down
202 changes: 105 additions & 97 deletions repo2docker/buildpacks/conda/environment.py-3.8-linux-64.lock

Large diffs are not rendered by default.

201 changes: 104 additions & 97 deletions repo2docker/buildpacks/conda/environment.py-3.8-linux-aarch64.lock

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion repo2docker/buildpacks/conda/environment.py-3.8.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# AUTO GENERATED FROM environment.yml, DO NOT MANUALLY MODIFY
# Generated on 2023-06-08 09:34:21 UTC
# Generated on 2023-10-14 22:05:18 UTC
channels:
- conda-forge
dependencies:
Expand Down
204 changes: 106 additions & 98 deletions repo2docker/buildpacks/conda/environment.py-3.9-linux-64.lock

Large diffs are not rendered by default.

203 changes: 105 additions & 98 deletions repo2docker/buildpacks/conda/environment.py-3.9-linux-aarch64.lock

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion repo2docker/buildpacks/conda/environment.py-3.9.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# AUTO GENERATED FROM environment.yml, DO NOT MANUALLY MODIFY
# Generated on 2023-06-08 09:34:51 UTC
# Generated on 2023-10-14 22:05:49 UTC
channels:
- conda-forge
dependencies:
Expand Down
4 changes: 2 additions & 2 deletions repo2docker/buildpacks/conda/install-base-env.bash
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ set -ex

cd $(dirname $0)

export MAMBA_VERSION=1.4.9
export CONDA_VERSION=23.5.2
export MAMBA_VERSION=1.5.1
export CONDA_VERSION=23.7.4

URL="https://anaconda.org/conda-forge/micromamba/${MAMBA_VERSION}/download/${CONDA_PLATFORM}/micromamba-${MAMBA_VERSION}-0.tar.bz2"

Expand Down
6 changes: 3 additions & 3 deletions tests/conda/py35-binder-dir/verify
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,13 @@ v = out.split()[1]
assert v[:3] == "3.5", out

out = sh(["micromamba", "--version"])
assert out == "1.4.9", out
assert out == "1.5.1", out

out = sh(["mamba", "--version"])
assert (
out
== """mamba 1.4.9
conda 23.5.2"""
== """mamba 1.5.1
conda 23.7.4"""
), out

sh([kernel_python, "-c", "import numpy"])

0 comments on commit 8bdf681

Please sign in to comment.