Skip to content

Commit 7252be6

Browse files
committed
Merge HOTFIX master 0.14.3 into dev
2 parents 84cabf0 + cd4fef9 commit 7252be6

File tree

6 files changed

+25
-7
lines changed

6 files changed

+25
-7
lines changed

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

doc/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@
9797
'plot_gallery': sphinx_plot_gallery_flag,
9898
'backreferences_dir': None,
9999
'filename_pattern': 'example.*.py$',
100-
'ignore_pattern': r'custom_metrics\.py|__init__\.py',
100+
'ignore_pattern': r'custom_metrics\.py|__init__\.py|example_parallel_manual_spawning_python.py',
101101
'binder': {
102102
# Required keys
103103
'org': 'automl',

doc/releases.rst

Lines changed: 11 additions & 1 deletion
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

Lines changed: 8 additions & 2 deletions
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

Lines changed: 2 additions & 0 deletions
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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ scipy>=1.7.0
88
joblib
99
scikit-learn>=0.24.0,<0.25.0
1010

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

0 commit comments

Comments
 (0)