Skip to content

Commit 71f620e

Browse files
committed
remove deprecated skip_lower option from template_constant_dict
1 parent 822f335 commit 71f620e

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

easybuild/framework/easyconfig/templates.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -181,13 +181,10 @@
181181
# versionmajor, versionminor, versionmajorminor (eg '.'.join(version.split('.')[:2])) )
182182

183183

184-
def template_constant_dict(config, ignore=None, skip_lower=None, toolchain=None):
184+
def template_constant_dict(config, ignore=None, toolchain=None):
185185
"""Create a dict for templating the values in the easyconfigs.
186186
- config is a dict with the structure of EasyConfig._config
187187
"""
188-
if skip_lower is not None:
189-
_log.deprecated("Use of 'skip_lower' named argument for template_constant_dict has no effect anymore", '4.0')
190-
191188
# TODO find better name
192189
# ignore
193190
if ignore is None:

0 commit comments

Comments
 (0)