Skip to content

Commit

Permalink
Upper bound requirements
Browse files Browse the repository at this point in the history
  • Loading branch information
eddiebergman committed Apr 24, 2022
1 parent 8f7e3eb commit 5078e34
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 4 deletions.
2 changes: 1 addition & 1 deletion autosklearn/__version__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""Version information."""

# The following line *must* be the last in the module, exactly as formatted:
__version__ = "0.14.6"
__version__ = "0.14.7"
4 changes: 4 additions & 0 deletions autosklearn/util/dependencies.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,10 @@ def verify_packages(packages: Optional[Union[str, List[str]]]) -> None:
if not package:
continue

# Ignore comments
if package.startswith("#")
continue

match = RE_PATTERN.match(package)
if match:
name = match.group('name')
Expand Down
10 changes: 10 additions & 0 deletions doc/releases.rst
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,16 @@
Releases
========


Version 0.14.7
==============

* HOTFIX #1445: Locks `ConfigSpace` to `<0.5.0` and `smac` to `<1.3`. Adds upper bounds on `automl` packages to help prevent further issues.

Contributors v0.14.7
********************
* Eddie Bergman

Version 0.14.6
==============

Expand Down
7 changes: 4 additions & 3 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,8 @@ pandas>=1.0
liac-arff
threadpoolctl

ConfigSpace>=0.4.14,<0.5
pynisher>=0.6.3
# Add upper bounds to our own packages to keep things stable
ConfigSpace>=0.4.21,<0.5
pynisher>=0.6.3,<0.7
pyrfr>=0.8.1,<0.9
smac>=0.14
smac>=1.3.1,<1.4

0 comments on commit 5078e34

Please sign in to comment.