From 94bb62cb182023ac6586c5510ae9031ea56bd682 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alex=20Gr=C3=B6nholm?= Date: Tue, 25 Oct 2022 23:47:02 +0300 Subject: [PATCH] Fixed docs not building due to code style changes Fixes #471. --- docs/conf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/conf.py b/docs/conf.py index 6a88b10e..19b11f4e 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -52,7 +52,7 @@ with open( os.path.join(here, "..", "src", "wheel", "__init__.py"), encoding="utf8" ) as version_file: - match = re.search(r"__version__ = '((\d+\.\d+\.\d+).*)'", version_file.read()) + match = re.search(r'__version__ = "((\d+\.\d+\.\d+).*)"', version_file.read()) # The short X.Y version. version = match.group(2)