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
2 changes: 1 addition & 1 deletion .github/workflows/test-core.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: shpc test core

on:
pull_request: []
pull_request: {}

jobs:
test:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: shpc test modules

on:
pull_request: []
pull_request: {}

jobs:
test:
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ and **Merged pull requests**. Critical items to know are:
The versions coincide with releases on pip. Only major versions will be released as tags on Github.

## [0.0.x](https://github.com/singularityhub/singularity-hpc/tree/main) (0.0.x)
- Use unsetenv command for modulefiles (0.1.33)
- Reverted 0.1.31. Added an option (`singularity_path`) to control the path to the Singularity executable (0.1.32)
- \[Abandoned\] Adding in version_naming feature (0.1.31)
- Fix `module-info shell` Tcl test for Lmod<=8.7.55 (0.1.30)
Expand Down
2 changes: 1 addition & 1 deletion shpc/main/modules/templates/docker.tcl
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ set inspectCmd "{{ command }} \${PODMAN_OPTS} inspect ${containerPath}"
{% endfor %}
}
if { [ module-info mode remove ] } {
{% for alias in aliases %}{% if alias.name not in wrapper_scripts %} puts stdout "unset -f {{ alias.name }};"{% endif %}
{% for alias in aliases %}{% if alias.name not in wrapper_scripts %} puts stdout "unsetenv {{ alias.name }};"{% endif %}
{% endfor %}
}
} else {
Expand Down
2 changes: 1 addition & 1 deletion shpc/main/modules/templates/singularity.tcl
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ set inspectCmd "singularity \${SINGULARITY_OPTS} inspect \${SINGULARITY_COMMAND_
{% endfor %}
}
if { [ module-info mode remove ] } {
{% for alias in aliases %} {% if alias.name not in wrapper_scripts %} puts stdout "unset -f {{ alias.name }};"{% endif %}
{% for alias in aliases %} {% if alias.name not in wrapper_scripts %} puts stdout "unsetenv {{ alias.name }};"{% endif %}
{% endfor %}
}
} else {
Expand Down
2 changes: 1 addition & 1 deletion shpc/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
__copyright__ = "Copyright 2021-2025, Vanessa Sochat"
__license__ = "MPL 2.0"

__version__ = "0.1.32"
__version__ = "0.1.33"
AUTHOR = "Vanessa Sochat"
EMAIL = "vsoch@users.noreply.github.com"
NAME = "singularity-hpc"
Expand Down