Skip to content

Commit 5078e34

Browse files
committed
Upper bound requirements
1 parent 8f7e3eb commit 5078e34

File tree

4 files changed

+19
-4
lines changed

4 files changed

+19
-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.14.6"
4+
__version__ = "0.14.7"

autosklearn/util/dependencies.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,10 @@ def verify_packages(packages: Optional[Union[str, List[str]]]) -> None:
1717
if not package:
1818
continue
1919

20+
# Ignore comments
21+
if package.startswith("#")
22+
continue
23+
2024
match = RE_PATTERN.match(package)
2125
if match:
2226
name = match.group('name')

doc/releases.rst

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

12+
13+
Version 0.14.7
14+
==============
15+
16+
* HOTFIX #1445: Locks `ConfigSpace` to `<0.5.0` and `smac` to `<1.3`. Adds upper bounds on `automl` packages to help prevent further issues.
17+
18+
Contributors v0.14.7
19+
********************
20+
* Eddie Bergman
21+
1222
Version 0.14.6
1323
==============
1424

requirements.txt

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,8 @@ pandas>=1.0
1515
liac-arff
1616
threadpoolctl
1717

18-
ConfigSpace>=0.4.14,<0.5
19-
pynisher>=0.6.3
18+
# Add upper bounds to our own packages to keep things stable
19+
ConfigSpace>=0.4.21,<0.5
20+
pynisher>=0.6.3,<0.7
2021
pyrfr>=0.8.1,<0.9
21-
smac>=0.14
22+
smac>=1.3.1,<1.4

0 commit comments

Comments
 (0)