From 378bf8fe0e1e69c927e4cfa510f04cec98cf19e2 Mon Sep 17 00:00:00 2001 From: sfmig <33267254+sfmig@users.noreply.github.com> Date: Wed, 8 Jul 2026 19:36:28 +0100 Subject: [PATCH] Fix check manifest syntax --- {{cookiecutter.package_name}}/pyproject.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/{{cookiecutter.package_name}}/pyproject.toml b/{{cookiecutter.package_name}}/pyproject.toml index fc25ced..69d62e2 100644 --- a/{{cookiecutter.package_name}}/pyproject.toml +++ b/{{cookiecutter.package_name}}/pyproject.toml @@ -89,7 +89,7 @@ filterwarnings = [ [tool.check-manifest] {% if cookiecutter.create_docs == "yes" -%} ignore = [ - ".yaml", + "*.yaml", "tox.ini", "tests/", "tests/test_unit/", @@ -99,7 +99,7 @@ ignore = [ ] {% elif cookiecutter.create_docs == "no" -%} ignore = [ - ".yaml", + "*.yaml", "tox.ini", "tests/", "tests/test_unit/",