Skip to content

Commit

Permalink
Add requirement upper bounds to our own packages
Browse files Browse the repository at this point in the history
  • Loading branch information
eddiebergman committed Apr 21, 2022
1 parent 6cc8bb1 commit d29ba7a
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
3 changes: 3 additions & 0 deletions autosklearn/util/dependencies.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,9 @@ def verify_packages(packages: Optional[Union[str, List[str]]]) -> None:
if not package:
continue

if package.startswith("#"):
continue

match = RE_PATTERN.match(package)
if match:
name = match.group('name')
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
# We bound the requirements of our own libraries we control
ConfigSpace>=0.5,<0.6
pynisher>=0.6.3,<0.7
pyrfr>=0.8.1,<0.9
smac>=0.14
smac>=1.3,<1.4

0 comments on commit d29ba7a

Please sign in to comment.