Skip to content

Commit 7efa57f

Browse files
committed
MAINT prepare 0.4.2 release
1 parent b53c7e1 commit 7efa57f

File tree

4 files changed

+31
-4
lines changed

4 files changed

+31
-4
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.4.1"
4+
__version__ = "0.4.2"

doc/releases.rst

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,33 @@
1111
Releases
1212
========
1313

14+
Version 0.4.2
15+
=============
16+
17+
* Fixes #538: Remove rounding errors when giving a training set fraction for
18+
holdout.
19+
* Fixes #558: Ensemble script now uses less memory and the memory limit can be
20+
given to Auto-sklearn.
21+
* Fixes #585: Auto-sklearn's ensemble script produced wrong results when
22+
called directly (and not via one of Auto-sklearn's estimator classes).
23+
* Fixes an error in the ensemble script which made it non-deterministic.
24+
* MAINT #569: Rename hyperparameter to have a different name than a
25+
scikit-learn hyperparameter with different meaning.
26+
* MAINT #592: backwards compatible requirements.txt
27+
* MAINT #588: Fix SMAC version to 0.8.0
28+
* MAINT: remove dependency on the six package
29+
* MAINT: upgrade to XGBoost 0.80
30+
31+
Contributors
32+
************
33+
34+
* Taneli Mielikäinen
35+
* Matthias Feurer
36+
* Diogo Bastos
37+
* Zeyi Wen
38+
* Teresa Conceição
39+
* Jin Woo Ahn
40+
1441
Version 0.4.1
1542
=============
1643

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,6 @@ liac-arff
1616
pandas
1717

1818
ConfigSpace>=0.4.0,<0.5
19-
pynisher>=0.4
19+
pynisher>=0.4.2
2020
pyrfr>=0.7,<0.8
2121
smac==0.8

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
"nose",
3636
"Cython",
3737
# Numpy version of higher than 1.14.5 causes libgcc_s.so.1 error.
38-
"numpy>=1.9.0<=1.14.5",
38+
"numpy>=1.9.0,<=1.14.5",
3939
"scipy>=0.14.1",
4040
"scikit-learn>=0.19,<0.20",
4141
"lockfile",
@@ -45,7 +45,7 @@
4545
"liac-arff",
4646
"pandas",
4747
"ConfigSpace>=0.4.0,<0.5",
48-
"pynisher>=0.4,<0.5",
48+
"pynisher>=0.4.2",
4949
"pyrfr>=0.6.1,<0.8",
5050
"smac>=0.8,<0.9",
5151
"xgboost>=0.80",

0 commit comments

Comments
 (0)