Skip to content

Commit 9664a0f

Browse files
authored
Merge pull request #326 from openml/pre-workshop-release
Prepare pre-workshop release
2 parents 40510b9 + c0c6456 commit 9664a0f

4 files changed

Lines changed: 10 additions & 7 deletions

File tree

doc/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,8 +63,8 @@
6363

6464
# General information about the project.
6565
project = u'OpenML'
66-
copyright = u'2014-2016, Matthias Feurer, Andreas Müller, Farzan Majdani, ' \
67-
u'Joaquin Vanschoren and Pieter Gijsbers'
66+
copyright = u'2014-2017, Matthias Feurer, Andreas Müller, Farzan Majdani, ' \
67+
u'Joaquin Vanschoren, Jan van Rijn and Pieter Gijsbers'
6868

6969
# The version info for the project you're documenting, acts as replacement for
7070
# |version| and |release|, also used in various other places throughout the

doc/usage.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -513,7 +513,7 @@ We can now also inspect the flow object which was automatically created:
513513
.. code:: python
514514
515515
>>> flow = openml.flows.get_flow(run.flow_id)
516-
>>> pprint(vars(flow), depth=2)
516+
>>> pprint(vars(flow), depth=2) # doctest: +SKIP
517517
{'binary_format': None,
518518
'binary_md5': None,
519519
'binary_url': None,
@@ -522,7 +522,7 @@ We can now also inspect the flow object which was automatically created:
522522
'custom_name': None,
523523
'dependencies': 'sklearn==0.18.2\nnumpy>=1.6.1\nscipy>=0.9',
524524
'description': 'Automatically created scikit-learn flow.',
525-
'external_version': 'openml==0.6.0dev,sklearn==0.18.2',
525+
'external_version': 'openml==0.6.0,sklearn==0.18.2',
526526
'flow_id': 7245,
527527
'language': 'English',
528528
'model': RandomForestClassifier(bootstrap=True, class_weight=None, criterion='gini',

openml/__version__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
"""Version information."""
22

33
# The following line *must* be the last in the module, exactly as formatted:
4-
__version__ = "0.6.0dev"
4+
__version__ = "0.6.0"

setup.py

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# -*- coding: utf-8 -*-
2+
13
import os
24
import setuptools
35
import sys
@@ -35,7 +37,8 @@
3537

3638

3739
setuptools.setup(name="openml",
38-
author="Matthias Feurer",
40+
author="Matthias Feurer, Andreas Müller, Farzan Majdani, "
41+
"Joaquin Vanschoren, Jan van Rijn and Pieter Gijsbers",
3942
author_email="feurerm@informatik.uni-freiburg.de",
4043
maintainer="Matthias Feurer",
4144
maintainer_email="feurerm@informatik.uni-freiburg.de",
@@ -61,4 +64,4 @@
6164
'Programming Language :: Python :: 3',
6265
'Programming Language :: Python :: 3.4',
6366
'Programming Language :: Python :: 3.5',
64-
'Programming Language :: Python :: 3.6'])
67+
'Programming Language :: Python :: 3.6'])

0 commit comments

Comments
 (0)