From f10cd7e7837476e01845cd1af2c6554ba2077d0a Mon Sep 17 00:00:00 2001 From: hannah Date: Fri, 12 Aug 2022 08:43:32 -0400 Subject: [PATCH] print version number when building docs --- doc/conf.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/doc/conf.py b/doc/conf.py index 4c592bf8fe01..e9645fdbeb56 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -24,6 +24,9 @@ from datetime import datetime import time +# debug that building expected version +print(f"Building Documentation for Matplotlib: {matplotlib.__version__}") + # Release mode enables optimizations and other related options. is_release_build = tags.has('release') # noqa