From e0613aad8956bf9a2bb7d052c35a87f5e54a5d94 Mon Sep 17 00:00:00 2001 From: Fabian Pedregosa <fabian.pedregosa@inria.fr> Date: Thu, 16 Dec 2010 22:10:59 +0100 Subject: [PATCH] Change version to 0.6-rc --- doc/conf.py | 2 +- scikits/learn/__init__.py | 2 +- setup.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/doc/conf.py b/doc/conf.py index e7d98f6084..1843fec806 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -62,7 +62,7 @@ copyright = u'2010, scikits.learn developers' # The short X.Y version. version = '0.6' # The full version, including alpha/beta/rc tags. -release = '0.6-git' +release = '0.6-rc' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/scikits/learn/__init__.py b/scikits/learn/__init__.py index 3d2cce01fd..bf62a78167 100644 --- a/scikits/learn/__init__.py +++ b/scikits/learn/__init__.py @@ -39,4 +39,4 @@ __all__ = ['cross_val', 'ball_tree', 'cluster', 'covariance', 'datasets', 'gmm', 'linear_model', 'logistic', 'lda', 'metrics', 'svm', 'features', 'clone', 'metrics', 'test', 'gaussian_process'] -__version__ = '0.6.git' +__version__ = '0.6.rc' diff --git a/setup.py b/setup.py index bcb5b0ad20..28213f1561 100644 --- a/setup.py +++ b/setup.py @@ -15,7 +15,7 @@ MAINTAINER_EMAIL = 'fabian.pedregosa@inria.fr' URL = 'http://scikit-learn.sourceforge.net' LICENSE = 'new BSD' DOWNLOAD_URL = 'http://sourceforge.net/projects/scikit-learn/files/' -VERSION = '0.6-git' +VERSION = '0.6-rc' import setuptools # we are using a setuptools namespace from numpy.distutils.core import setup -- GitLab