Skip to content

Commit b4481e6

Browse files
authored
Prepare new release (#1291)
* Prepare new release * decrease test tolerance * decrease test tolerance
1 parent cebad79 commit b4481e6

File tree

3 files changed

+22
-1
lines changed

3 files changed

+22
-1
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.0"
4+
__version__ = "0.14.1"

doc/releases.rst

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,26 @@
99
Releases
1010
========
1111

12+
Version 0.14.1
13+
==============
14+
15+
* FIX #1248: Allow for sparse ``y_test``.
16+
* FIX #1259: Fix an issue that could result in ``setup.py`` not working due to relative paths
17+
being chosen.
18+
* MAINT #1261: Include a CITATION.cff file
19+
* MAINT #1263: Make unit test deterministic.
20+
* DOC #1269: Fix example on extending data preprocessing.
21+
* DOC #1270: Remove ``>>>`` from code examples in the documentation.
22+
* DOC #1271: Fix a typo in an example in the documentation.
23+
* DOC #1282: Add a contribution guide.
24+
25+
Contributors v0.14.1
26+
********************
27+
28+
* Edward Bergman
29+
* Michael Becker
30+
* Katharina Eggensperger
31+
1232
Version 0.14.0
1333
==============
1434

test/test_pipeline/components/classification/test_liblinear.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ class LibLinearComponentTest(BaseClassificationComponentTest):
2020
res["default_digits_iterative"] = -1
2121
res["default_digits_binary"] = 0.98907103825136611
2222
res["default_digits_multilabel"] = 0.89889188078944637
23+
res["default_digits_multilabel_places"] = 2
2324
res["default_digits_multilabel_proba"] = 0.99999999999999989
2425

2526
sk_mod = sklearn.svm.LinearSVC

0 commit comments

Comments
 (0)