Skip to content

Commit ecadacb

Browse files
committed
Add: Release notes
1 parent df94d67 commit ecadacb

File tree

3 files changed

+38
-3
lines changed

3 files changed

+38
-3
lines changed

autosklearn/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@
2020
sys.platform
2121
)
2222

23-
if sys.version_info < (3, 6):
23+
if sys.version_info < (3, 7):
2424
raise ValueError(
2525
'Unsupported python version %s found. Auto-sklearn requires Python '
26-
'3.6 or higher.' % sys.version_info
26+
'3.7 or higher.' % sys.version_info
2727
)

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.3"
4+
__version__ = "0.14.4"

doc/releases.rst

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

12+
Version 0.14.4
13+
==============
14+
15+
* Fix #1356: SVR degree hyperparameter now only active with "poly" kernel.
16+
* Add #1311: Black format checking (non-strict).
17+
* Maint #1306: Run history is now saved every iteration incase of crashes.
18+
* Doc #1309: Updated doc faqs and manual
19+
* Doc #1322: Fix typo in contribution guide
20+
* Maint #1326: Add isort checker (non-strict)
21+
* Maint #1238, #1346, #1368, #1370: Update warnings in tests
22+
* Maint #1325: Test workflow can now be manually triggered
23+
* Maint #1332: Update docstring and typing of ``include`` and ``exclude`` params
24+
* Maint #1260: Add Python 3.10 to our tests
25+
* Add #1318: First update to use ``automl_common``
26+
* Fix #1339: Resolve dependancy issues with ``sphinx_toolbox``
27+
* Fix #1335: Fix issue where some regression algorithm gave incorrect output dimensions
28+
as raised in #1297
29+
* Doc #1340: Update example for predefined splits
30+
* Fix #1329: Fix random state not being passed to the ConfigurationSpace
31+
* Maint #1348: Stop double triggering of github workflows
32+
* Doc #1349: Rename OSX to macOS in docs
33+
* Add #1321: Change ``show_models()`` to produce actual pipeline objects and not a ``str``
34+
* Maint #1361: Remove ``flaky`` dependency
35+
* Maint #1366: Make ``SimpleClassificationPipeline`` tests more deterministic
36+
* Maint #1367: Update test values for ``MLPRegressor`` with newer numpy
37+
38+
Contributors v0.14.4
39+
********************
40+
41+
* Eddie Bergman
42+
* Matthias Feurer
43+
* Katharina Eggensperger
44+
* UserFindingSelf
45+
* partev
46+
1247
Version 0.14.3
1348
==============
1449

0 commit comments

Comments
 (0)