File tree 3 files changed +4
-3
lines changed
3 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -14,7 +14,8 @@ and **Merged pull requests**. Critical items to know are:
14
14
The versions coincide with releases on pip. Only major versions will be released as tags on Github.
15
15
16
16
## [ 0.0.x] ( https://github.com/singularityhub/singularity-hpc/tree/main ) (0.0.x)
17
- - Added an option (` singularity_path ` ) to control the path to the Singularity executable (0.1.31)
17
+ - Reverted 0.1.31. Added an option (` singularity_path ` ) to control the path to the Singularity executable (0.1.32)
18
+ - \[ Abandoned\] Adding in version_naming feature (0.1.31)
18
19
- Fix ` module-info shell ` Tcl test for Lmod<=8.7.55 (0.1.30)
19
20
- Allow import of LooseVersion from packaging (bug) (0.1.29)
20
21
- use quay.io api to list tags since does not conform to oci (0.1.28)
Original file line number Diff line number Diff line change 1
1
{% extends " bases/shell-script-base.sh" %}
2
2
3
- {% block content %}singularity ${SINGULARITY_OPTS} exec ${SINGULARITY_COMMAND_OPTS} {% if features.gpu %}{{ features.gpu }} {% endif %}{% if features.home %}-B {{ features.home }} --home {{ features.home }} {% endif %}{% if features.x11 %}-B {{ features.x11 }} {% endif %}{% if settings.environment_file %}-B $wrapperDir /{{ settings.environment_file }}:/.singularity.d/env/{{ settings.environment_file }}{% endif %} {% if settings.bindpaths %}-B {{ settings.bindpaths }}{% endif %} {% if alias.singularity_options %} {{ alias.singularity_options }} {% endif %} {{ image }} {{ alias.command }} {% if ' /sh' in settings.wrapper_shell or ' /bash' in settings.wrapper_shell %}" $@ " {% elif ' /csh' in settings.wrapper_shell %}$argv :q{% endif %}
3
+ {% block content %}{{ settings.singularity_path }} ${SINGULARITY_OPTS} exec ${SINGULARITY_COMMAND_OPTS} {% if features.gpu %}{{ features.gpu }} {% endif %}{% if features.home %}-B {{ features.home }} --home {{ features.home }} {% endif %}{% if features.x11 %}-B {{ features.x11 }} {% endif %}{% if settings.environment_file %}-B $wrapperDir /{{ settings.environment_file }}:/.singularity.d/env/{{ settings.environment_file }}{% endif %} {% if settings.bindpaths %}-B {{ settings.bindpaths }}{% endif %} {% if alias.singularity_options %} {{ alias.singularity_options }} {% endif %} {{ image }} {{ alias.command }} {% if ' /sh' in settings.wrapper_shell or ' /bash' in settings.wrapper_shell %}" $@ " {% elif ' /csh' in settings.wrapper_shell %}$argv :q{% endif %}
4
4
{% endblock %}
Original file line number Diff line number Diff line change 2
2
__copyright__ = "Copyright 2021-2025, Vanessa Sochat"
3
3
__license__ = "MPL 2.0"
4
4
5
- __version__ = "0.1.31 "
5
+ __version__ = "0.1.32 "
6
6
AUTHOR = "Vanessa Sochat"
7
7
8
8
NAME = "singularity-hpc"
You can’t perform that action at this time.
0 commit comments