Skip to content

Commit 8f7e3eb

Browse files
committed
Revert "Add requirement upper bounds to our own packages"
This reverts commit d29ba7a.
1 parent c777a4d commit 8f7e3eb

File tree

2 files changed

+3
-7
lines changed

2 files changed

+3
-7
lines changed

autosklearn/util/dependencies.py

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

20-
if package.startswith("#"):
21-
continue
22-
2320
match = RE_PATTERN.match(package)
2421
if match:
2522
name = match.group('name')

requirements.txt

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

18-
# We bound the requirements of our own libraries we control
19-
ConfigSpace>=0.5,<0.6
20-
pynisher>=0.6.3,<0.7
18+
ConfigSpace>=0.4.14,<0.5
19+
pynisher>=0.6.3
2120
pyrfr>=0.8.1,<0.9
22-
smac>=1.3,<1.4
21+
smac>=0.14

0 commit comments

Comments
 (0)