File tree Expand file tree Collapse file tree 3 files changed +6
-2
lines changed Expand file tree Collapse file tree 3 files changed +6
-2
lines changed Original file line number Diff line number Diff line change
1
+ # NOTE: the upper bound for the package version is only set for CI stability, and it is dropped while installing this package
2
+ # in case you want to preserve/enforce restrictions on the latest compatible version, add "strict" as an in-line comment
3
+
4
+ hydra-core >=1.2.0, <1.4.0
Original file line number Diff line number Diff line change @@ -41,7 +41,7 @@ def _prepare_extras() -> dict[str, Any]:
41
41
}
42
42
43
43
# project specific extras groups
44
- extras ["fabric-all" ] = extras ["fabric-strategies" ] + extras ["fabric-examples" ]
44
+ extras ["fabric-all" ] = extras ["fabric-extra" ] + extras [ "fabric- strategies" ] + extras ["fabric-examples" ]
45
45
extras ["fabric-dev" ] = extras ["fabric-all" ] + extras ["fabric-test" ]
46
46
extras ["pytorch-all" ] = extras ["pytorch-extra" ] + extras ["pytorch-strategies" ] + extras ["pytorch-examples" ]
47
47
extras ["pytorch-dev" ] = extras ["pytorch-all" ] + extras ["pytorch-test" ]
Original file line number Diff line number Diff line change @@ -44,7 +44,7 @@ def _prepare_extras() -> dict[str, Any]:
44
44
}
45
45
for req in parse_requirements (extras ["strategies" ]):
46
46
extras [req .key ] = [str (req )]
47
- extras ["all" ] = extras ["strategies" ] + extras ["examples" ]
47
+ extras ["all" ] = extras ["extra" ] + extras [ " strategies" ] + extras ["examples" ]
48
48
extras ["dev" ] = extras ["all" ] + extras ["test" ]
49
49
return extras
50
50
You can’t perform that action at this time.
0 commit comments