Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/miniforge/devcontainer-feature.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "Conda, Mamba (Miniforge)",
"id": "miniforge",
"version": "2.0.0",
"version": "2.0.1",
"description": "Installs Conda and Mamba package manager and Python3. conda-forge set as the default (and only) channel.",
"documentationURL": "https://github.com/rocker-org/devcontainer-features/tree/main/src/miniforge",
"options": {
Expand All @@ -20,7 +20,7 @@
"Miniforge-pypy3"
],
"default": "Miniforge3",
"description": "Select install CPython (3) or PyPy (-pypy3)."
"description": "Select install CPython (3) or PyPy (-pypy3, which is deprecated and no longer available after version 24.9.0)."
}
},
"installsAfter": [
Expand Down
14 changes: 0 additions & 14 deletions test/miniforge/mambaforge-pypy3.sh

This file was deleted.

14 changes: 0 additions & 14 deletions test/miniforge/mambaforge.sh

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ set -e
source dev-container-features-test-lib

# Check that conda is installed
check "conda" conda --version
check "conda" conda --version

# Report result
reportResults
4 changes: 1 addition & 3 deletions test/miniforge/miniforge-pypy3.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,11 @@

set -e

LATEST_VERSION="$(git ls-remote --tags https://github.com/conda-forge/miniforge | grep -oP "[0-9]+\\.[0-9]+.[0-9]+" | sort -V | tail -n 1)"

# shellcheck source=/dev/null
source dev-container-features-test-lib

# Feature-specific tests
check "conda" conda --version | grep "$LATEST_VERSION"
check "conda" bash -c 'conda --version | grep "24.7.1"'

# Report result
reportResults
21 changes: 3 additions & 18 deletions test/miniforge/scenarios.json
Original file line number Diff line number Diff line change
@@ -1,30 +1,15 @@
{
"mambaforge": {
"image": "debian:stable-slim",
"features": {
"miniforge": {
"variant": "Mambaforge"
}
}
},
"miniforge-pypy3": {
"image": "debian:stable-slim",
"features": {
"miniforge": {
"version": "24.7.1-2",
"variant": "Miniforge-pypy3"
}
}
},
"mambaforge-pypy3": {
"image": "debian:stable-slim",
"features": {
"miniforge": {
"variant": "Mambaforge-pypy3"
}
}
},
"mambaforge-existing-conda": {
"image": "jupyter/base-notebook",
"miniforge-existing-conda": {
"image": "quay.io/jupyter/base-notebook",
"features":{
"miniforge": {}
},
Expand Down