diff options
| author | AlexSm <[email protected]> | 2024-11-14 18:02:48 +0100 |
|---|---|---|
| committer | GitHub <[email protected]> | 2024-11-14 18:02:48 +0100 |
| commit | 42393178e3ca660b7b2da431bc4c768aadafe856 (patch) | |
| tree | 846127355de5d4088b4eefcab801b15c1ec4e454 /contrib/python/ipython/py3/IPython/core/release.py | |
| parent | c0af8d60b18390f8ef7b3ff878b822c43da62a54 (diff) | |
| parent | 51f34813686206b46686d84e96243def9f9da8df (diff) | |
Merge pull request #11568 from maximyurchuk/mergelibs-yurchuk-manual
Mergelibs yurchuk manual
Diffstat (limited to 'contrib/python/ipython/py3/IPython/core/release.py')
| -rw-r--r-- | contrib/python/ipython/py3/IPython/core/release.py | 19 |
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' |
