From e86f98e1a98efebd06066141203dff8b730ed3be Mon Sep 17 00:00:00 2001 From: Tim Jenness Date: Tue, 29 Oct 2024 10:54:48 -0700 Subject: [PATCH] Ignore news fragments in doc build --- doc/conf.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/doc/conf.py b/doc/conf.py index b2a2746..33d135a 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -3,6 +3,7 @@ For more information, see: https://developer.lsst.io/stack/building-single-package-docs.html """ + # flake8: noqa from documenteer.conf.pipelinespkg import * @@ -11,3 +12,4 @@ html_theme_options["logotext"] = project html_title = project html_short_title = project +exclude_patterns = ["changes/*"]