File tree 4 files changed +50
-3
lines changed 4 files changed +50
-3
lines changed Original file line number Diff line number Diff line change 67
67
# built documents.
68
68
#
69
69
# The short X.Y version.
70
- version = '0.13'
70
+ version = '0.13.1 '
71
71
# The full version, including alpha/beta/rc tags.
72
72
import sklearn
73
73
release = sklearn .__version__
Original file line number Diff line number Diff line change 156
156
{% else %}
157
157
< h3 > < a href ="{{pathto('whats_new')}} "> News</ a > </ h3 >
158
158
159
- < p > scikit-learn 0.13 is available
159
+ < p > scikit-learn 0.13.1 is available
160
160
for < a href ="https://sourceforge.net/projects/scikit-learn/files/ "> download</ a > .
161
161
See < a href ="{{pathto('whats_new')}} "> what's new</ a > and tips
162
162
on < a href ="{{pathto('install')}} "> installing</ a > .</ p >
Original file line number Diff line number Diff line change 1
1
.. currentmodule :: sklearn
2
2
3
+ .. _changes_0_13_1 :
4
+
5
+ 0.13.1
6
+ ======
7
+
8
+ The 0.13.1 release only fixes some bugs and does not add any new functionality.
9
+
10
+ Changelog
11
+ ---------
12
+
13
+ - Fixed a testing error caused by the function :func: `cross_validation.train_test_split ` being
14
+ interpreted as a test by `Yaroslav Halchenko `_.
15
+
16
+ - Fixed a bug in the reassignment of small clusters in the :class: `cluster.MiniBatchKMeans `
17
+ by `Gael Varoquaux `_.
18
+
19
+ - Fixed default value of ``gamma `` in :class: `decomposition.KernelPCA ` by `Lars Buitinck `_.
20
+
21
+ - Updated joblib to ``0.7.0d `` by `Gael Varoquaux `_.
22
+
23
+ - Fixed scaling of the deviance in :class: `ensemble.GradientBoostingClassifier ` by `Peter Prettenhofer `_.
24
+
25
+ - Better tie-breaking in :class: `multiclass.OneVsOneClassifier ` by `Andreas Müller `_.
26
+
27
+ - Other small improvements to tests and documentation.
28
+
29
+ People
30
+ ------
31
+ List of contributors for release 0.13.1 by number of commits.
32
+ * 16 `Lars Buitinck `_
33
+ * 12 `Andreas Müller `_
34
+ * 8 `Gael Varoquaux `_
35
+ * 5 Robert Marchman
36
+ * 3 `Peter Prettenhofer `_
37
+ * 2 Hrishikesh Huilgolkar
38
+ * 1 Bastiaan van den Berg
39
+ * 1 Diego Molla
40
+ * 1 `Gilles Louppe `_
41
+ * 1 `Mathieu Blondel `_
42
+ * 1 Nelle Varoquaux
43
+ * 1 Rafael Cunha de Almeida
44
+ * 1 Rolando Espinoza La fuente
45
+ * 1 `Vlad Niculae `_
46
+ * 1 `Yaroslav Halchenko `_
47
+
48
+
49
+
3
50
.. _changes_0_13 :
4
51
5
52
0.13
Original file line number Diff line number Diff line change 13
13
See http://scikit-learn.org for complete documentation.
14
14
"""
15
15
import sys
16
- __version__ = '0.13'
16
+ __version__ = '0.13.1 '
17
17
18
18
try :
19
19
# This variable is injected in the __builtins__ by the build
You can’t perform that action at this time.
0 commit comments