From 9748a506903938cbb228bb890faa8971a3b275bb Mon Sep 17 00:00:00 2001 From: Fabian Pedregosa Date: Tue, 20 Sep 2011 16:13:30 +0200 Subject: [PATCH] Start of 0.10 development cycle. --- doc/conf.py | 2 +- setup.py | 2 +- sklearn/__init__.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/doc/conf.py b/doc/conf.py index d3d73cc509a88..ca0c3b3f3e3e4 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -70,7 +70,7 @@ # built documents. # # The short X.Y version. -version = '0.9' +version = '0.10' # The full version, including alpha/beta/rc tags. import sklearn release = sklearn.__version__ diff --git a/setup.py b/setup.py index 1197d029ac5a3..e9daa3414089d 100644 --- a/setup.py +++ b/setup.py @@ -17,7 +17,7 @@ URL = 'http://scikit-learn.sourceforge.net' LICENSE = 'new BSD' DOWNLOAD_URL = 'http://sourceforge.net/projects/scikit-learn/files/' -VERSION = '0.9-git' +VERSION = '0.10-git' import setuptools # we are using a setuptools namespace from numpy.distutils.core import setup diff --git a/sklearn/__init__.py b/sklearn/__init__.py index dec86f9cbd49a..15795f8cf7ed6 100644 --- a/sklearn/__init__.py +++ b/sklearn/__init__.py @@ -47,4 +47,4 @@ def test(self, label='fast', verbose=1, extra_argv=['--exe'], 'metrics', 'mixture', 'naive_bayes', 'neighbors', 'pipeline', 'preprocessing', 'qda', 'svm', 'test', 'clone', 'pls'] -__version__ = '0.9-git' +__version__ = '0.10-git'