##// END OF EJS Templates
add IPython.version_info...
MinRK -
Show More
@@ -57,6 +57,7 b' for author, email in release.authors.itervalues():'
57 __author__ += author + ' <' + email + '>\n'
57 __author__ += author + ' <' + email + '>\n'
58 __license__ = release.license
58 __license__ = release.license
59 __version__ = release.version
59 __version__ = release.version
60 version_info = release.version_info
60
61
61 def embed_kernel(module=None, local_ns=None, **kwargs):
62 def embed_kernel(module=None, local_ns=None, **kwargs):
62 """Embed and start an IPython kernel in a given scope.
63 """Embed and start an IPython kernel in a given scope.
@@ -21,7 +21,7 b" name = 'ipython'"
21 # version
21 # version
22 _version_major = 0
22 _version_major = 0
23 _version_minor = 14
23 _version_minor = 14
24 _version_micro = '' # use '' for first of series, number for 1 and above
24 _version_micro = 0 # use 0 for first of series, number for 1 and above
25 _version_extra = 'dev'
25 _version_extra = 'dev'
26 #_version_extra = 'rc1'
26 #_version_extra = 'rc1'
27 # _version_extra = '' # Uncomment this for full releases
27 # _version_extra = '' # Uncomment this for full releases
@@ -36,6 +36,7 b' if _version_extra:'
36 __version__ = '.'.join(map(str, _ver))
36 __version__ = '.'.join(map(str, _ver))
37
37
38 version = __version__ # backwards compatibility name
38 version = __version__ # backwards compatibility name
39 version_info = (_version_major, _version_minor, _version_micro, _version_extra)
39
40
40 description = "IPython: Productive Interactive Computing"
41 description = "IPython: Productive Interactive Computing"
41
42
General Comments 0
You need to be logged in to leave comments. Login now