From a4a3d353b76d9834c2c29bbf9f1a3d9fb7e66802 Mon Sep 17 00:00:00 2001 From: Andreas Mueller <amueller@ais.uni-bonn.de> Date: Tue, 4 Sep 2012 18:36:30 +0100 Subject: [PATCH] MISC changed version number for release, change maintainer to myself --- doc/conf.py | 2 +- doc/themes/scikit-learn/layout.html | 2 +- setup.py | 6 +++--- sklearn/__init__.py | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/doc/conf.py b/doc/conf.py index 499ee55c0c..b6520524ef 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -73,7 +73,7 @@ copyright = u'2010–2011, scikit-learn developers (BSD License)' # built documents. # # The short X.Y version. -version = '0.12-git' +version = '0.12' # The full version, including alpha/beta/rc tags. import sklearn release = sklearn.__version__ diff --git a/doc/themes/scikit-learn/layout.html b/doc/themes/scikit-learn/layout.html index 28c4967f2d..3b7dc7d5ce 100644 --- a/doc/themes/scikit-learn/layout.html +++ b/doc/themes/scikit-learn/layout.html @@ -152,7 +152,7 @@ {% else %} <h3>News</h3> - <p>scikit-learn 0.11 is available + <p>scikit-learn 0.12 is available for <a href="https://sourceforge.net/projects/scikit-learn/files/">download</a>. See <a href="{{pathto('whats_new')}}">what's new</a> and tips on <a href="{{pathto('install')}}">installing</a>.</p> diff --git a/setup.py b/setup.py index 1beb4c9f76..bf3c535a79 100644 --- a/setup.py +++ b/setup.py @@ -22,9 +22,9 @@ builtins.__SKLEARN_SETUP__ = True DISTNAME = 'scikit-learn' DESCRIPTION = 'A set of python modules for machine learning and data mining' LONG_DESCRIPTION = open('README.rst').read() -MAINTAINER = 'Fabian Pedregosa' -MAINTAINER_EMAIL = 'fabian.pedregosa@inria.fr' -URL = 'http://scikit-learn.sourceforge.net' +MAINTAINER = 'Andreas Mueller' +MAINTAINER_EMAIL = 'amueller@ais.uni-bonn.de' +URL = 'http://scikit-learn.org' LICENSE = 'new BSD' DOWNLOAD_URL = 'http://sourceforge.net/projects/scikit-learn/files/' diff --git a/sklearn/__init__.py b/sklearn/__init__.py index f485ab7611..2b4ad33210 100644 --- a/sklearn/__init__.py +++ b/sklearn/__init__.py @@ -13,7 +13,7 @@ machine-learning as a versatile tool for science and engineering. See http://scikit-learn.sourceforge.net for complete documentation. """ import sys -__version__ = '0.12-git' +__version__ = '0.12' try: # This variable is injected in the __builtins__ by the build -- GitLab