Skip to content
Snippets Groups Projects
Commit 5648bf24 authored by Oriol Tintó's avatar Oriol Tintó
Browse files

Overcome autosubmit issue with requirement repetition.

parent b772cf1b
No related branches found
No related tags found
1 merge request!4Switching to the advanced configuration method and fixing spack build.
......@@ -58,7 +58,14 @@ requirements="%python_environment.requirements%"
# Convert list with python format to a bash array
requirements=($( echo ${requirements} | sed "s/'//g" | tr -d '[],'))
#TODO: Shouldn't be necessary but it is for now to overcome an issue with a repetition of the requirements.
# Use sort and uniq to get the unique elements
unique_requirements=($(printf "%s\n" "${requirements[@]}" | sort -u))
# Print the unique elements
echo "${unique_requirements[@]}"
# Install requirements.
for requirement in ${requirements[@]} ; do
for requirement in ${unique_requirements[@]} ; do
python -m pip install ${requirement}
done
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