Skip to content

Commit

Permalink
Merge pull request #8 from neuroforgede/packaging
Browse files Browse the repository at this point in the history
Cleanup of jinja templating feature
  • Loading branch information
s4ke authored Jul 16, 2024
2 parents d95e4fd + e322592 commit e358725
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions nothelm/lib/template.py
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,8 @@ def template_project(
default_values = load_values(f'{project_dir}/values.yaml')
elif os.path.exists(f'{project_dir}/values.yaml.j2'):
default_values = load_values(f'{project_dir}/values.yaml.j2')
elif os.path.exists(f'{project_dir}/values.yaml.jinja2'):
default_values = load_values(f'{project_dir}/values.yaml.jinja2')
else:
default_values = dict()

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ def cli_test_suite():
setuptools.setup(
name="nothelm.py",
scripts=["bin/nothelm"],
version="0.2.2",
version="0.2.3",
author="NeuroForge GmbH & Co. KG",
author_email="[email protected]",
description="nothelm.py",
Expand Down

0 comments on commit e358725

Please sign in to comment.