Skip to content

Commit 892c1b8

Browse files
authored
Merge pull request #339 from singularityhub/fix/container-url-in-docgen
Fixing missing container url in docgen
2 parents 7f2d0ff + f4108e3 commit 892c1b8

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ and **Merged pull requests**. Critical items to know are:
1414
The versions coincide with releases on pip. Only major versions will be released as tags on Github.
1515

1616
## [0.0.x](https://github.com/singularityhub/singularity-hpc/tree/master) (0.0.x)
17+
- container url does not render in docs (0.0.23)
1718
- addition of tcl modules, removal of un-needed database (0.0.22)
1819
- first update of all containers, and bugfix to pull (0.0.21)
1920
- allowing for a custom container base, container_base (0.0.2)

shpc/main/modules.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -195,7 +195,7 @@ def docgen(self, module_name, out=None):
195195
aliases=aliases,
196196
versions=config.tags.keys(),
197197
github_url=github_url,
198-
url=config.url,
198+
container_url=config.url,
199199
prefix=self.settings.module_exc_prefix,
200200
creation_date=datetime.now(),
201201
name=module_name,

shpc/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
__copyright__ = "Copyright 2021, Vanessa Sochat"
33
__license__ = "MPL 2.0"
44

5-
__version__ = "0.0.22"
5+
__version__ = "0.0.23"
66
AUTHOR = "Vanessa Sochat"
77
NAME = "singularity-hpc"
88
PACKAGE_URL = "https://github.com/singularityhub/singularity-hpc"

0 commit comments

Comments
 (0)