summaryrefslogtreecommitdiffstats
path: root/contrib/python/ipython/py3/IPython/core/release.py
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/python/ipython/py3/IPython/core/release.py')
-rw-r--r--contrib/python/ipython/py3/IPython/core/release.py19
1 files changed, 5 insertions, 14 deletions
diff --git a/contrib/python/ipython/py3/IPython/core/release.py b/contrib/python/ipython/py3/IPython/core/release.py
index fb5a54da6ab..d9eb28aa955 100644
--- a/contrib/python/ipython/py3/IPython/core/release.py
+++ b/contrib/python/ipython/py3/IPython/core/release.py
@@ -16,7 +16,7 @@
# release. 'dev' as a _version_extra string means this is a development
# version
_version_major = 8
-_version_minor = 28
+_version_minor = 29
_version_patch = 0
_version_extra = ".dev"
# _version_extra = "rc1"
@@ -32,22 +32,13 @@ if _version_extra:
version = __version__ # backwards compatibility name
version_info = (_version_major, _version_minor, _version_patch, _version_extra)
-# Change this when incrementing the kernel protocol version
-kernel_protocol_version_info = (5, 0)
-kernel_protocol_version = "%i.%i" % kernel_protocol_version_info
license = "BSD-3-Clause"
-authors = {'Fernando' : ('Fernando Perez','[email protected]'),
- 'Janko' : ('Janko Hauser','[email protected]'),
- 'Nathan' : ('Nathaniel Gray','[email protected]'),
- 'Ville' : ('Ville Vainio','[email protected]'),
- 'Brian' : ('Brian E Granger', '[email protected]'),
- 'Min' : ('Min Ragan-Kelley', '[email protected]'),
- 'Thomas' : ('Thomas A. Kluyver', '[email protected]'),
- 'Jorgen' : ('Jorgen Stenarson', '[email protected]'),
- 'Matthias' : ('Matthias Bussonnier', '[email protected]'),
- }
+authors = {
+ "Fernando": ("Fernando Perez", "[email protected]"),
+ "M": ("M Bussonnier", "[email protected]"),
+}
author = 'The IPython Development Team'