Skip to content

Commit

Permalink
Fixed docs not building due to code style changes
Browse files Browse the repository at this point in the history
Fixes #471.
  • Loading branch information
agronholm committed Oct 25, 2022
1 parent d635664 commit 94bb62c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down

0 comments on commit 94bb62c

Please sign in to comment.