From 4d76e3882210ed2818a43256265f6df31348d410 Mon Sep 17 00:00:00 2001 From: Andrew Gorcester Date: Mon, 22 Jun 2020 15:48:55 -0700 Subject: [PATCH] fix: add multiprocessing.rst to synthool excludes (#186) --- synth.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/synth.py b/synth.py index 0b3fff8e5..1ca1dcc4e 100644 --- a/synth.py +++ b/synth.py @@ -28,6 +28,6 @@ # Add templated files # ---------------------------------------------------------------------------- templated_files = common.py_library(cov_level=99) -s.move(templated_files, excludes=["noxfile.py"]) +s.move(templated_files, excludes=["noxfile.py, docs/multiprocessing.rst"]) s.shell.run(["nox", "-s", "blacken"], hide_output=False)