Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 8075887

Browse filesBrowse files
committed
REL increased version number, added whatsnew
1 parent f4bc9a2 commit 8075887
Copy full SHA for 8075887

File tree

Expand file treeCollapse file tree

4 files changed

+50
-3
lines changed
Filter options
Expand file treeCollapse file tree

4 files changed

+50
-3
lines changed

‎doc/conf.py

Copy file name to clipboardExpand all lines: doc/conf.py
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@
6767
# built documents.
6868
#
6969
# The short X.Y version.
70-
version = '0.13'
70+
version = '0.13.1'
7171
# The full version, including alpha/beta/rc tags.
7272
import sklearn
7373
release = sklearn.__version__

‎doc/themes/scikit-learn/layout.html

Copy file name to clipboardExpand all lines: doc/themes/scikit-learn/layout.html
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@
156156
{% else %}
157157
<h3><a href="{{pathto('whats_new')}}">News</a></h3>
158158

159-
<p>scikit-learn 0.13 is available
159+
<p>scikit-learn 0.13.1 is available
160160
for <a href="https://sourceforge.net/projects/scikit-learn/files/">download</a>.
161161
See <a href="{{pathto('whats_new')}}">what's new</a> and tips
162162
on <a href="{{pathto('install')}}">installing</a>.</p>

‎doc/whats_new.rst

Copy file name to clipboardExpand all lines: doc/whats_new.rst
+47Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,52 @@
11
.. currentmodule:: sklearn
22

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+
350
.. _changes_0_13:
451

552
0.13

‎sklearn/__init__.py

Copy file name to clipboardExpand all lines: sklearn/__init__.py
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
See http://scikit-learn.org for complete documentation.
1414
"""
1515
import sys
16-
__version__ = '0.13'
16+
__version__ = '0.13.1'
1717

1818
try:
1919
# This variable is injected in the __builtins__ by the build

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.