From bded69d1c80cdf85271243e23c9ce2b14117e0ee Mon Sep 17 00:00:00 2001 From: Eddie Bergman Date: Fri, 24 Dec 2021 23:24:39 +0100 Subject: [PATCH] Update dask requirement, disabled example (#1356) (cherry picked from commit cd4fef98620cd4be599b9124f06b12a39c2c3526) --- autosklearn/__version__.py | 2 +- doc/conf.py | 2 +- doc/releases.rst | 12 +++++++++++- .../example_parallel_manual_spawning_cli.py | 10 ++++++++-- .../example_parallel_manual_spawning_python.py | 2 ++ requirements.txt | 4 ++-- 6 files changed, 25 insertions(+), 7 deletions(-) diff --git a/autosklearn/__version__.py b/autosklearn/__version__.py index ed846e6f88..d33bd90441 100644 --- a/autosklearn/__version__.py +++ b/autosklearn/__version__.py @@ -1,4 +1,4 @@ """Version information.""" # The following line *must* be the last in the module, exactly as formatted: -__version__ = "0.14.2" +__version__ = "0.14.3" diff --git a/doc/conf.py b/doc/conf.py index a63ca70ce3..2da16696f1 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -79,7 +79,7 @@ #}, 'backreferences_dir': None, 'filename_pattern': 'example.*.py$', - 'ignore_pattern': r'custom_metrics\.py|__init__\.py', + 'ignore_pattern': r'custom_metrics\.py|__init__\.py|example_parallel_manual_spawning_python.py', 'binder': { # Required keys 'org': 'automl', diff --git a/doc/releases.rst b/doc/releases.rst index c89418d851..a96f4c4d67 100644 --- a/doc/releases.rst +++ b/doc/releases.rst @@ -9,6 +9,16 @@ Releases ======== +Version 0.14.3 +============== + +* HOTFIX #1356: Updates dask to ``dask.distributed >=2012.12``. + +Contributors v0.14.3 +******************** + +* Eddie Bergman + Version 0.14.2 ============== @@ -35,7 +45,7 @@ Version 0.14.1 Contributors v0.14.1 ******************** -* Edward Bergman +* Eddie Bergman * Michael Becker * Katharina Eggensperger diff --git a/examples/60_search/example_parallel_manual_spawning_cli.py b/examples/60_search/example_parallel_manual_spawning_cli.py index fc03d52655..41200cd78c 100644 --- a/examples/60_search/example_parallel_manual_spawning_cli.py +++ b/examples/60_search/example_parallel_manual_spawning_cli.py @@ -11,11 +11,17 @@ This example shows how to start the dask scheduler and spawn workers for *Auto-sklearn* manually from the command line. Use this example as a starting point to parallelize *Auto-sklearn* across multiple -machines. If you want to start everything manually from within Python -please see :ref:`sphx_glr_examples_60_search_example_parallel_manual_spawning_python.py`. +machines. + To run *Auto-sklearn* in parallel on a single machine check out the example :ref:`sphx_glr_examples_60_search_example_parallel_n_jobs.py`. +If you want to start everything manually from within Python +please see ``:ref:sphx_glr_examples_60_search_example_parallel_manual_spawning_python.py``. + +**NOTE:** Above example is disabled due to issue https://github.com/dask/distributed/issues/5627 + + You can learn more about the dask command line interface from https://docs.dask.org/en/latest/setup/cli.html. diff --git a/examples/60_search/example_parallel_manual_spawning_python.py b/examples/60_search/example_parallel_manual_spawning_python.py index 8e050537b7..ed723598a9 100644 --- a/examples/60_search/example_parallel_manual_spawning_python.py +++ b/examples/60_search/example_parallel_manual_spawning_python.py @@ -3,6 +3,8 @@ =================================================== Parallel Usage: Spawning workers from within Python =================================================== +**NOTE**: Disabled due to issue https://github.com/dask/distributed/issues/5627 + *Auto-sklearn* uses `dask.distributed `_ diff --git a/requirements.txt b/requirements.txt index ae8ebe037b..dae1bea07b 100644 --- a/requirements.txt +++ b/requirements.txt @@ -7,8 +7,8 @@ scipy>=1.7.0 joblib scikit-learn>=0.24.0,<0.25.0 -dask<2021.07 -distributed>=2.2.0,<2021.07 +dask>=2021.12 +distributed>=2012.12 pyyaml pandas>=1.0 liac-arff