Skip to content

Commit 9cf67f9

Browse files
committed
REL changed version to 0.13 everywhere.
1 parent 3e89aa5 commit 9cf67f9

File tree

4 files changed

+6
-8
lines changed

4 files changed

+6
-8
lines changed

doc/conf.py

Lines changed: 3 additions & 6 deletions
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-git'
70+
version = '0.13'
7171
# The full version, including alpha/beta/rc tags.
7272
import sklearn
7373
release = sklearn.__version__
@@ -198,11 +198,8 @@
198198
# Grouping the document tree into LaTeX files. List of tuples
199199
# (source start file, target name, title, author, documentclass
200200
# [howto/manual]).
201-
latex_documents = [
202-
('index', 'user_guide.tex', u'scikit-learn user guide',
203-
u'scikit-learn developers', 'manual'),
204-
205-
]
201+
latex_documents = [('index', 'user_guide.tex', u'scikit-learn user guide',
202+
u'scikit-learn developers', 'manual'), ]
206203

207204
# The name of an image file (relative to this directory) to place at the top of
208205
# the title page.

doc/support.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -94,6 +94,7 @@ This documentation is relative to |release|. Documentation for other
9494
versions can be found here:
9595

9696
* `Development version <http://scikit-learn.org/dev/>`_
97+
* `0.13 <http://scikit-learn.org/0.13/>`_
9798
* `0.12 <http://scikit-learn.org/0.12/>`_
9899
* `0.11 <http://scikit-learn.org/0.11/>`_
99100
* `0.10 <http://scikit-learn.org/0.10/>`_

doc/themes/scikit-learn/layout.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@
164164
{% else %}
165165
<h3><a href="{{pathto('whats_new')}}">News</a></h3>
166166

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

sklearn/__init__.py

Lines 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-git'
16+
__version__ = '0.13'
1717

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

0 commit comments

Comments
 (0)