Skip to content

Commit a4a3d35

Browse files
committed
MISC changed version number for release, change maintainer to myself
1 parent e53274a commit a4a3d35

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

doc/conf.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@
7373
# built documents.
7474
#
7575
# The short X.Y version.
76-
version = '0.12-git'
76+
version = '0.12'
7777
# The full version, including alpha/beta/rc tags.
7878
import sklearn
7979
release = sklearn.__version__

doc/themes/scikit-learn/layout.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@
152152
{% else %}
153153
<h3>News</h3>
154154

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

setup.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@
2222
DISTNAME = 'scikit-learn'
2323
DESCRIPTION = 'A set of python modules for machine learning and data mining'
2424
LONG_DESCRIPTION = open('README.rst').read()
25-
MAINTAINER = 'Fabian Pedregosa'
26-
MAINTAINER_EMAIL = 'fabian.pedregosa@inria.fr'
27-
URL = 'http://scikit-learn.sourceforge.net'
25+
MAINTAINER = 'Andreas Mueller'
26+
MAINTAINER_EMAIL = 'amueller@ais.uni-bonn.de'
27+
URL = 'http://scikit-learn.org'
2828
LICENSE = 'new BSD'
2929
DOWNLOAD_URL = 'http://sourceforge.net/projects/scikit-learn/files/'
3030

sklearn/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
See http://scikit-learn.sourceforge.net for complete documentation.
1414
"""
1515
import sys
16-
__version__ = '0.12-git'
16+
__version__ = '0.12'
1717

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

0 commit comments

Comments
 (0)