File tree Expand file tree Collapse file tree 4 files changed +31
-4
lines changed Expand file tree Collapse file tree 4 files changed +31
-4
lines changed Original file line number Diff line number Diff line change 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 "
Original file line number Diff line number Diff line change 1111Releases
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+
1441Version 0.4.1
1542=============
1643
Original file line number Diff line number Diff line change @@ -16,6 +16,6 @@ liac-arff
1616pandas
1717
1818ConfigSpace >= 0.4.0 ,< 0.5
19- pynisher >= 0.4
19+ pynisher >= 0.4.2
2020pyrfr >= 0.7 ,< 0.8
2121smac == 0.8
Original file line number Diff line number Diff line change 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" ,
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" ,
You can’t perform that action at this time.
0 commit comments