Skip to content

Commit

Permalink
Merge pull request #339 from singularityhub/fix/container-url-in-docgen
Browse files Browse the repository at this point in the history
Fixing missing container url in docgen
  • Loading branch information
vsoch committed May 8, 2021
2 parents 7f2d0ff + f4108e3 commit 892c1b8
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
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/master) (0.0.x)
- container url does not render in docs (0.0.23)
- addition of tcl modules, removal of un-needed database (0.0.22)
- first update of all containers, and bugfix to pull (0.0.21)
- allowing for a custom container base, container_base (0.0.2)
Expand Down
2 changes: 1 addition & 1 deletion shpc/main/modules.py
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ def docgen(self, module_name, out=None):
aliases=aliases,
versions=config.tags.keys(),
github_url=github_url,
url=config.url,
container_url=config.url,
prefix=self.settings.module_exc_prefix,
creation_date=datetime.now(),
name=module_name,
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, Vanessa Sochat"
__license__ = "MPL 2.0"

__version__ = "0.0.22"
__version__ = "0.0.23"
AUTHOR = "Vanessa Sochat"
NAME = "singularity-hpc"
PACKAGE_URL = "https://github.com/singularityhub/singularity-hpc"
Expand Down

0 comments on commit 892c1b8

Please sign in to comment.