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 8eb2545 + 96e80d0 commit 88b8541Copy full SHA for 88b8541
doc/conf.py
@@ -94,12 +94,12 @@
94
# We read the version info from the source file.
95
ver = {}
96
97
-ver_file = os.path.join('..', 'nitime', 'version.py')
+ver_file = os.path.join('..', 'nitime', '_version.py')
98
with open(ver_file) as f:
99
exec(f.read())
100
101
# The short X.Y version.
102
-version = '%s.%s' % (_version_major, _version_minor)
+version = '%s.%s' % (version_tuple[0], version_tuple[1])
103
# The full version, including alpha/beta/rc tags.
104
release = __version__
105
0 commit comments