From 82b1117723a573f6f5dc40cc6d75f96efb087737 Mon Sep 17 00:00:00 2001 From: Matthias Feurer Date: Fri, 23 Oct 2020 12:59:48 +0200 Subject: [PATCH] prepare release of 0.11.0 --- doc/progress.rst | 29 +++++++++++++++++-- .../30_extended/create_upload_tutorial.py | 2 +- openml/__version__.py | 2 +- 3 files changed, 28 insertions(+), 5 deletions(-) diff --git a/doc/progress.rst b/doc/progress.rst index a9f1e2f2a..2c0b22e43 100644 --- a/doc/progress.rst +++ b/doc/progress.rst @@ -8,17 +8,40 @@ Changelog 0.11.0 ~~~~~~ -* ADD #929: Add data edit API +* ADD #753: Allows uploading custom flows to OpenML via OpenML-Python. +* ADD #777: Allows running a flow on pandas dataframes (in addition to numpy arrays). +* ADD #888: Allow passing a `task_id` to `run_model_on_task`. +* ADD #894: Support caching of datasets using feather format as an option. +* ADD #929: Add data edit API. +* ADD #866, #943: Add support for scikit-learn's `passthrough` and `drop` when uploading flows to + OpenML. +* AYY #879: Add support for scikit-learn's MLP hyperparameter `layer_sizes`. +* ADD #945: PEP 561 compliance for distributing Type information. +* DOC #660: Remove nonexistent argument from docstring. +* DOC #901: The API reference now documents the config file and its options. +* DOC #912: API reference now shows `create_task`. +* DOC #954: Remove TODO text from documentation. +* DOC #960: document how to upload multiple ignore attributes. * FIX #873: Fixes an issue which resulted in incorrect URLs when printing OpenML objects after switching the server. * FIX #885: Logger no longer registered by default. Added utility functions to easily register logging to console and file. +* FIX #890: Correct the scaling of data in the SVM example. * MAINT #767: Source distribution installation is now unit-tested. +* MAINT #781: Add pre-commit and automated code formatting with black. +* MAINT #804: Rename arguments of list_evaluations to indicate they expect lists of ids. * MAINT #836: OpenML supports only pandas version 1.0.0 or above. * MAINT #865: OpenML no longer bundles test files in the source distribution. +* MAINT #881: Improve the error message for too-long URIs. * MAINT #897: Dropping support for Python 3.5. -* ADD #894: Support caching of datasets using feather format as an option. -* ADD #945: PEP 561 compliance for distributing Type information +* MAINT #916: Adding support for Python 3.8. +* MAINT #920: Improve error messages for dataset upload. +* MAINT #921: Improve hangling of the OpenML server URL in the config file. +* MAINT #925: Improve error handling and error message when loading datasets. +* MAINT #928: Restructures the contributing documentation. +* MAINT #936: Adding support for scikit-learn 0.23.X. +* MAINT #945: Make OpenML-Python PEP562 compliant. +* MAINT #951: Converts TaskType class to a TaskType enum. 0.10.2 ~~~~~~ diff --git a/examples/30_extended/create_upload_tutorial.py b/examples/30_extended/create_upload_tutorial.py index 0692b9b09..a4e1d9655 100644 --- a/examples/30_extended/create_upload_tutorial.py +++ b/examples/30_extended/create_upload_tutorial.py @@ -100,7 +100,7 @@ # The attribute that represents the row-id column, if present in the # dataset. row_id_attribute=None, - # Attribute or list of attributes that should be excluded in modelling, such as + # Attribute or list of attributes that should be excluded in modelling, such as # identifiers and indexes. E.g. "feat1" or ["feat1","feat2"] ignore_attribute=None, # How to cite the paper. diff --git a/openml/__version__.py b/openml/__version__.py index 338948217..07c9a950d 100644 --- a/openml/__version__.py +++ b/openml/__version__.py @@ -3,4 +3,4 @@ # License: BSD 3-Clause # The following line *must* be the last in the module, exactly as formatted: -__version__ = "0.11.0dev" +__version__ = "0.11.0"