Skip to content

Commit cd4fef9

Browse files
authored
Update dask requirement, disabled example (#1356)
1 parent e21047a commit cd4fef9

File tree

6 files changed

+25
-7
lines changed

6 files changed

+25
-7
lines changed

autosklearn/__version__.py

+1-1
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.14.2"
4+
__version__ = "0.14.3"

doc/conf.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@
7979
#},
8080
'backreferences_dir': None,
8181
'filename_pattern': 'example.*.py$',
82-
'ignore_pattern': r'custom_metrics\.py|__init__\.py',
82+
'ignore_pattern': r'custom_metrics\.py|__init__\.py|example_parallel_manual_spawning_python.py',
8383
'binder': {
8484
# Required keys
8585
'org': 'automl',

doc/releases.rst

+11-1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,16 @@
99
Releases
1010
========
1111

12+
Version 0.14.3
13+
==============
14+
15+
* HOTFIX #1356: Updates dask to ``dask.distributed >=2012.12``.
16+
17+
Contributors v0.14.3
18+
********************
19+
20+
* Eddie Bergman
21+
1222
Version 0.14.2
1323
==============
1424

@@ -35,7 +45,7 @@ Version 0.14.1
3545
Contributors v0.14.1
3646
********************
3747

38-
* Edward Bergman
48+
* Eddie Bergman
3949
* Michael Becker
4050
* Katharina Eggensperger
4151

examples/60_search/example_parallel_manual_spawning_cli.py

+8-2
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,17 @@
1111
This example shows how to start the dask scheduler and spawn
1212
workers for *Auto-sklearn* manually from the command line. Use this example
1313
as a starting point to parallelize *Auto-sklearn* across multiple
14-
machines. If you want to start everything manually from within Python
15-
please see :ref:`sphx_glr_examples_60_search_example_parallel_manual_spawning_python.py`.
14+
machines.
15+
1616
To run *Auto-sklearn* in parallel on a single machine check out the example
1717
:ref:`sphx_glr_examples_60_search_example_parallel_n_jobs.py`.
1818
19+
If you want to start everything manually from within Python
20+
please see ``:ref:sphx_glr_examples_60_search_example_parallel_manual_spawning_python.py``.
21+
22+
**NOTE:** Above example is disabled due to issue https://github.com/dask/distributed/issues/5627
23+
24+
1925
You can learn more about the dask command line interface from
2026
https://docs.dask.org/en/latest/setup/cli.html.
2127

examples/60_search/example_parallel_manual_spawning_python.py

+2
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@
33
===================================================
44
Parallel Usage: Spawning workers from within Python
55
===================================================
6+
**NOTE**: Disabled due to issue https://github.com/dask/distributed/issues/5627
7+
68
79
*Auto-sklearn* uses
810
`dask.distributed <https://distributed.dask.org/en/latest/index.html>`_

requirements.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ scipy>=1.7.0
77
joblib
88
scikit-learn>=0.24.0,<0.25.0
99

10-
dask<2021.07
11-
distributed>=2.2.0,<2021.07
10+
dask>=2021.12
11+
distributed>=2012.12
1212
pyyaml
1313
pandas>=1.0
1414
liac-arff

0 commit comments

Comments
 (0)