-
-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Alternative class to Module to allow non-Registry-backed modules * Extended the test suite to test uninstallation * Fold everything back into a single class: Module * Moved the verification of the tag to the set_tag method * config.name is a ContainerName. Need to turn it into a string * Introduced get_module * Reinstated module_basepath as a property * Extracted Module.load_config and made get_module rely on that and new_module * The `tag` parameter is almost never used, and conflicts with the convention `tool:tag` * Moved the validation back to Module * Moved the block to make the file closer to its original * Made docgen work with versioned modules too * bugfix: get rid of an unnecessary / * Display the versioned name * Use the requested version as an example * Only get_module needs the container path * Preferred style * Cleanup: only pass the config object itself and access its properties from the template * Use urllib to properly parse the URL * Version bump and changelog update * There shouldn't be a space there !
- Loading branch information
Showing
7 changed files
with
84 additions
and
83 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
__copyright__ = "Copyright 2021-2022, Vanessa Sochat" | ||
__license__ = "MPL 2.0" | ||
|
||
__version__ = "0.1.15" | ||
__version__ = "0.1.16" | ||
AUTHOR = "Vanessa Sochat" | ||
EMAIL = "[email protected]" | ||
NAME = "singularity-hpc" | ||
|