From 389292981473ee523e54cff8f65c0a54c8d473e6 2015-04-08 01:51:44 From: Min RK Date: 2015-04-08 01:51:44 Subject: [PATCH] use dev for maintenance branch version instead of 'maint' PEP 440 made anything other than 'dev' unparseable --- diff --git a/IPython/core/release.py b/IPython/core/release.py index c47a24d..134f267 100644 --- a/IPython/core/release.py +++ b/IPython/core/release.py @@ -22,7 +22,7 @@ name = 'ipython' _version_major = 3 _version_minor = 2 _version_patch = 0 -_version_extra = 'maint' +_version_extra = 'dev' # _version_extra = 'rc1' # _version_extra = '' # Uncomment this for full releases diff --git a/IPython/html/static/base/js/namespace.js b/IPython/html/static/base/js/namespace.js index 63b1652..3fd8338 100644 --- a/IPython/html/static/base/js/namespace.js +++ b/IPython/html/static/base/js/namespace.js @@ -4,7 +4,7 @@ var IPython = IPython || {}; define([], function(){ "use strict"; - IPython.version = "3.1.0"; + IPython.version = "3.2.0-dev"; IPython._target = '_blank'; return IPython; });