File tree Expand file tree Collapse file tree 4 files changed +4
-3
lines changed Expand file tree Collapse file tree 4 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -14,6 +14,7 @@ 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.scom/singularityhub/singularity-hpc/tree/master ) (0.0.x)
17
+ - Adding quotes around tcl descriptions (0.0.37)
17
18
- fixing bug with container install (does not honor module directory) (0.0.36)
18
19
- ` .version ` file should be written in top level of module folders [ #450 ] ( https://github.com/singularityhub/singularity-hpc/issues/450 ) (0.0.35)
19
20
- tcl module functions need ` $@ ` to handle additional arguments
Original file line number Diff line number Diff line change @@ -47,7 +47,7 @@ set workdir [pwd]
47
47
{% if description %}set notes " {{ description }}" {% endif %}
48
48
{% if url %}set homepage " {{ url }}" {% endif %}
49
49
set helpcommand " This module is a {{ docker }} container wrapper for {{ name }} v{{ version }}. {% if description %}{{ description }}{% endif %}"
50
- {% if labels %}{% for key, value in labels.items() %}set {{ key }} {{ value }}
50
+ {% if labels %}{% for key, value in labels.items() %}set {{ key }} " {{ value }}"
51
51
{% endfor %}{% endif %}
52
52
53
53
# conflict with modules with the same alias name
Original file line number Diff line number Diff line change @@ -53,7 +53,7 @@ set containerPath {{ container_sif }}
53
53
{% if description %}set notes " {{ description }}" {% endif %}
54
54
{% if url %}set homepage " {{ url }}" {% endif %}
55
55
set helpcommand " This module is a singularity container wrapper for {{ name }} v{{ version }}. {% if description %}{{ description }}{% endif %}"
56
- {% if labels %}{% for key, value in labels.items() %}set {{ key }} {{ value }}
56
+ {% if labels %}{% for key, value in labels.items() %}set {{ key }} " {{ value }}"
57
57
{% endfor %}{% endif %}
58
58
59
59
# conflict with modules with the same alias name
Original file line number Diff line number Diff line change 2
2
__copyright__ = "Copyright 2021, Vanessa Sochat"
3
3
__license__ = "MPL 2.0"
4
4
5
- __version__ = "0.0.36 "
5
+ __version__ = "0.0.37 "
6
6
AUTHOR = "Vanessa Sochat"
7
7
NAME = "singularity-hpc"
8
8
PACKAGE_URL = "https://github.com/singularityhub/singularity-hpc"
You can’t perform that action at this time.
0 commit comments