summaryrefslogtreecommitdiffstats
path: root/contrib/python/ipython/py3/IPython/core/release.py
diff options
context:
space:
mode:
authorMaxim Yurchuk <[email protected]>2024-11-13 16:32:39 +0300
committerMaxim Yurchuk <[email protected]>2024-11-13 16:32:39 +0300
commit23387aafadce23ea77beffb2981e8c0e2f2a7f0a (patch)
tree54b0f95fca1ad03d93f5a18abdfe98e8ab34b420 /contrib/python/ipython/py3/IPython/core/release.py
parentee51155da394b56a8e3329d25a514422e5da7bc3 (diff)
parent4ab23311f7a6d45ac318179569df9ba46fb9ab68 (diff)
Merge branch 'rightlib' into mergelibs-yurchuk-manual
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'