Skip to content
Snippets Groups Projects
Commit 87b2ad72 authored by Hans Fangohr's avatar Hans Fangohr
Browse files

Merge branch '41-install-all-is-broken' into 'main'

Resolve "install ALL is broken"

Closes #41

See merge request !127
parents 3e6af816 81e8a4a9
No related branches found
No related tags found
1 merge request!127Resolve "install ALL is broken"
Pipeline #420031 passed
spack-environments @ 4429e664
Subproject commit 4429e6640f2d1460dd5ea88c517dea484825afd0
...@@ -7,7 +7,7 @@ name = "mpsd_software_manager" ...@@ -7,7 +7,7 @@ name = "mpsd_software_manager"
authors = [{name = "SSU-Computational Science (Fangohr et al)", email = "ssu-cs@mpsd.mpg.de"}] authors = [{name = "SSU-Computational Science (Fangohr et al)", email = "ssu-cs@mpsd.mpg.de"}]
license = {file = "LICENSE"} license = {file = "LICENSE"}
classifiers = ["License :: OSI Approved :: MIT License"] classifiers = ["License :: OSI Approved :: MIT License"]
version = "2023.12.12" version = "2023.12.18"
readme = "README.rst" readme = "README.rst"
requires-python = ">=3.9" requires-python = ">=3.9"
dependencies = [ dependencies = [
......
...@@ -64,9 +64,10 @@ def install_environment( ...@@ -64,9 +64,10 @@ def install_environment(
# run the prepare_environment function # run the prepare_environment function
available_package_sets = prepare_environment(mpsd_release, root_dir) available_package_sets = prepare_environment(mpsd_release, root_dir)
# Ensure that the requested package_sets are available in the release # Ensure that the requested package_sets are available in the release
if package_sets == "ALL": if package_sets == ["ALL"]:
package_sets = available_package_sets package_sets = available_package_sets
elif package_sets == "NONE": elif package_sets == "NONE":
# TODO: This if case is never reached, because of new argparse logic. Remove it.
# No package_sets requested, so we only create the env and print the # No package_sets requested, so we only create the env and print the
# list of available package_sets # list of available package_sets
logging.warning( logging.warning(
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment