Skip to content

Commit

Permalink
Merge pull request #385 from pepkit/v_143_point_release
Browse files Browse the repository at this point in the history
1.4.3 fix
  • Loading branch information
donaldcampbelljr authored Aug 1, 2023
2 parents 3399add + 0e4a6a8 commit 9942106
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions docs/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@

This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html) and [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) format.

## [1.4.3] -- 2023-08-01

### Fixed
- Fix regression for var_templates expansion.

## [1.4.2] -- 2023-07-31

### Fixed
Expand Down
2 changes: 1 addition & 1 deletion looper/_version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "1.4.2"
__version__ = "1.4.3"
2 changes: 1 addition & 1 deletion looper/conductor.py
Original file line number Diff line number Diff line change
Expand Up @@ -729,7 +729,7 @@ def write_script(self, pool, size):
namespaces=namespaces
)
_LOGGER.debug(f"namespace pipelines: { pl_iface }")
namespaces["pipeline"]["var_templates"] = pl_iface[VAR_TEMPL_KEY]
namespaces["pipeline"]["var_templates"] = pl_iface[VAR_TEMPL_KEY] or {}
for k, v in namespaces["pipeline"]["var_templates"].items():
namespaces["pipeline"]["var_templates"][k] = expath(v)
# pre_submit hook namespace updates
Expand Down

0 comments on commit 9942106

Please sign in to comment.