From 58af2061f48830548706bb21f4454891fd17c4c2 Mon Sep 17 00:00:00 2001 From: Gael varoquaux Date: Sat, 3 Sep 2011 09:11:20 +0200 Subject: [PATCH 1/2] DOC: Minor scikits -> scikit --- doc/modules/dp-derivation.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/modules/dp-derivation.rst b/doc/modules/dp-derivation.rst index 6c35079c688..fd1c6e31522 100644 --- a/doc/modules/dp-derivation.rst +++ b/doc/modules/dp-derivation.rst @@ -24,7 +24,7 @@ complex, or even more. For this reason we present here a full derivation of the inference algorithm and all the update and lower-bound equations. If you're not interested in learning how to derive similar algorithms yourself and you're not interested in -changing/debugging the implementation in the scikits this document is +changing/debugging the implementation in the scikit this document is not for you. The complexity of this implementation is linear in the number of From 42d6c566febbc3915056d1113784711ec6329b71 Mon Sep 17 00:00:00 2001 From: Gael varoquaux Date: Sat, 3 Sep 2011 13:00:08 +0200 Subject: [PATCH 2/2] BUG: sklearn/setup.py : learn -> sklearn Thanks Robert Layton for catching the bug --- sklearn/setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sklearn/setup.py b/sklearn/setup.py index d02042b7992..26822d8770d 100644 --- a/sklearn/setup.py +++ b/sklearn/setup.py @@ -7,7 +7,7 @@ def configuration(parent_package='', top_path=None): from numpy.distutils.misc_util import Configuration from numpy.distutils.system_info import get_info, BlasNotFoundError - config = Configuration('learn', parent_package, top_path) + config = Configuration('sklearn', parent_package, top_path) config.add_subpackage('check_build') config.add_subpackage('svm')