Skip to content

Commit 461814d

Browse files
authored
prepare new release (#705)
1 parent a25f977 commit 461814d

File tree

3 files changed

+8
-5
lines changed

3 files changed

+8
-5
lines changed

doc/progress.rst

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,13 @@ Changelog
2424
* FIX #642: `check_datasets_active` now correctly also returns active status of deactivated datasets.
2525
* FIX #304, #636: Allow serialization of numpy datatypes and list of lists of more types (e.g. bools, ints) for flows.
2626
* FIX #651: Fixed a bug that would prevent openml-python from finding the user's config file.
27+
* FIX #693: OpenML-Python uses liac-arff instead of scipy.io for loading task splits now.
2728
* DOC #678: Better color scheme for code examples in documentation.
2829
* DOC #681: Small improvements and removing list of missing functions.
2930
* DOC #684: Add notice to examples that connect to the test server.
31+
* DOC #688: Add new example on retrieving evaluations.
3032
* DOC #691: Update contributing guidelines to use Github draft feature instead of tags in title.
33+
* DOC #692: All functions are documented now.
3134
* MAINT #184: Dropping Python2 support.
3235
* MAINT #596: Fewer dependencies for regular pip install.
3336
* MAINT #652: Numpy and Scipy are no longer required before installation.

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.8.0"
4+
__version__ = "0.9.0"

setup.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,23 +20,23 @@
2020
)
2121

2222
setuptools.setup(name="openml",
23-
author="Matthias Feurer, Andreas Müller, Farzan Majdani, "
24-
"Joaquin Vanschoren, Jan van Rijn and Pieter Gijsbers",
23+
author="Matthias Feurer, Jan van Rijn, Arlind Kadra, Andreas Müller, "
24+
"Pieter Gijsbers and Joaquin Vanschoren",
2525
author_email="[email protected]",
2626
maintainer="Matthias Feurer",
2727
maintainer_email="[email protected]",
2828
description="Python API for OpenML",
2929
license="BSD 3-clause",
3030
url="http://openml.org/",
3131
project_urls={
32-
"Documentation": "https://openml.github.io/openml-python/master/",
32+
"Documentation": "https://openml.github.io/openml-python/",
3333
"Source Code": "https://github.com/openml/openml-python"
3434
},
3535
version=version,
3636
packages=setuptools.find_packages(),
3737
package_data={'': ['*.txt', '*.md']},
3838
install_requires=[
39-
'liac-arff>=2.2.2',
39+
'liac-arff>=2.4.0',
4040
'xmltodict',
4141
'requests',
4242
'scikit-learn>=0.18',

0 commit comments

Comments
 (0)