Skip to content

Commit e3c4f37

Browse files
committed
Fix boostrap cookiecutter
The filter names were outdated in the bootstrap section.
1 parent e11be48 commit e3c4f37

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

cookiecutter/bootstrap/{{ cookiecutter.__project_name }}/.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@
33
jobs:
44
test:
55
strategy:
6-
matrix:{{ cookiecutter.test_matrix | to_nice_yaml(level=4, embed_in="dict") }}
6+
matrix:{{ cookiecutter.test_matrix | jaml(level=4, embed_in="dict") }}

cookiecutter/bootstrap/{{ cookiecutter.__project_name }}/pyproject.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -37,10 +37,10 @@ changelog = "{{ cookiecutter.repository }}/blob/main/CHANGES.md"
3737
{{ cookiecutter.app_label }} = "pulpcore.cli.{{ cookiecutter.app_label }}"
3838

3939
[tool.pulp_cli_template]
40-
app_label = {{ cookiecutter.app_label | to_toml_value }}
41-
glue = {{ cookiecutter.glue | to_toml_value }}
42-
docs = {{ cookiecutter.docs | to_toml_value }}
43-
translations = {{ cookiecutter.translations | to_toml_value }}
40+
app_label = {{ cookiecutter.app_label | toml_value }}
41+
glue = {{ cookiecutter.glue | toml_value }}
42+
docs = {{ cookiecutter.docs | toml_value }}
43+
translations = {{ cookiecutter.translations | toml_value }}
4444

4545
[tool.pytest.ini_options]
4646
markers = [

0 commit comments

Comments
 (0)