Skip to content

Commit 94bb62c

Browse files
committed
Fixed docs not building due to code style changes
Fixes #471.
1 parent d635664 commit 94bb62c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/conf.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@
5252
with open(
5353
os.path.join(here, "..", "src", "wheel", "__init__.py"), encoding="utf8"
5454
) as version_file:
55-
match = re.search(r"__version__ = '((\d+\.\d+\.\d+).*)'", version_file.read())
55+
match = re.search(r'__version__ = "((\d+\.\d+\.\d+).*)"', version_file.read())
5656
# The short X.Y version.
5757
version = match.group(2)
5858

0 commit comments

Comments
 (0)