Skip to content

Commit 6ccd65a

Browse files
authored
fix version import for docs (#623)
1 parent 738d178 commit 6ccd65a

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

docs/source/conf.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,8 @@ def install(package):
107107
# built documents.
108108
#
109109
# The short X.Y version.
110-
from version import version as quantecon_version
110+
import quantecon
111+
quantecon_version = quantecon.__version__
111112
version = quantecon_version
112113
# The full version, including alpha/beta/rc tags.
113114
release = quantecon_version

0 commit comments

Comments
 (0)