Skip to content

Commit

Permalink
Merge pull request #4277 from branfosj/skip_lower
Browse files Browse the repository at this point in the history
remove deprecated `skip_lower` option from `template_constant_dict`
  • Loading branch information
boegel committed Sep 6, 2023
2 parents 470f899 + 71f620e commit 23c3298
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions easybuild/framework/easyconfig/templates.py
Original file line number Diff line number Diff line change
Expand Up @@ -181,13 +181,10 @@
# versionmajor, versionminor, versionmajorminor (eg '.'.join(version.split('.')[:2])) )


def template_constant_dict(config, ignore=None, skip_lower=None, toolchain=None):
def template_constant_dict(config, ignore=None, toolchain=None):
"""Create a dict for templating the values in the easyconfigs.
- config is a dict with the structure of EasyConfig._config
"""
if skip_lower is not None:
_log.deprecated("Use of 'skip_lower' named argument for template_constant_dict has no effect anymore", '4.0')

# TODO find better name
# ignore
if ignore is None:
Expand Down

0 comments on commit 23c3298

Please sign in to comment.