Skip to content

Commit 55080ab

Browse files
committed
fix(docs): update version logic in conf.py
black changed `__init__.py` to use double quotes, so we need to tweak this here.
1 parent d05f081 commit 55080ab

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/source/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
# space here is important since __version__ is used in generation of
4747
# version_info also
4848
if "__version__ =" in aline:
49-
version = aline.split("'")[1]
49+
version = aline.split("\"")[1]
5050
# The full version, including alpha/beta/rc tags.
5151
release = version
5252

0 commit comments

Comments
 (0)