We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 15ddce3 + 38d81c3 commit a13a0d8Copy full SHA for a13a0d8
docs/conf.py
@@ -62,7 +62,8 @@
62
#
63
# The short X.Y version.
64
# Read in the version number
65
-exec(open("../ciw/version.py", "r").read())
+with open("../ciw/version.py", 'r') as version_file_handle:
66
+ exec(version_file_handle.read())
67
version = __version__
68
# The full version, including alpha/beta/rc tags.
69
release = version
0 commit comments