Skip to content

Commit e1e66ad

Browse files
authored
unpin yaml version, broken in conda (#662)
* unpin yaml version, broken in conda Signed-off-by: vsoch <[email protected]>
1 parent df6a62c commit e1e66ad

File tree

3 files changed

+10
-3
lines changed

3 files changed

+10
-3
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/main) (0.0.x)
17+
- unpin yaml dependency (0.1.26)
1718
- Change format of config command output to only show setting values, not keys, for parseability (0.1.25)
1819
- Allow custom location for wrapper scripts (0.1.24)
1920
- Labels with newlines need additional parsing (0.1.23)

shpc/defaults.py

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,13 @@
1818
)
1919

2020
# variables in settings that allow environment variable expansion
21-
allowed_envars = ["container_base", "module_base", "views_base", "wrapper_base", "registry"]
21+
allowed_envars = [
22+
"container_base",
23+
"module_base",
24+
"views_base",
25+
"wrapper_base",
26+
"registry",
27+
]
2228

2329
# The default GitHub registry with recipes (for docgen)
2430
github_url = "https://github.com/singularityhub/shpc-registry"

shpc/version.py

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

5-
__version__ = "0.1.25"
5+
__version__ = "0.1.26"
66
AUTHOR = "Vanessa Sochat"
77
88
NAME = "singularity-hpc"
@@ -21,7 +21,7 @@
2121
("spython", {"min_version": "0.2.0"}),
2222
("Jinja2", {"min_version": None}),
2323
("jsonschema", {"min_version": None}),
24-
("ruamel.yaml", {"max_version": "0.17.21"}),
24+
("ruamel.yaml", {"min_version": None}),
2525
("requests", {"min_version": None}),
2626
)
2727

0 commit comments

Comments
 (0)