Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions requirements/fabric/extra.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
# NOTE: the upper bound for the package version is only set for CI stability, and it is dropped while installing this package
# in case you want to preserve/enforce restrictions on the latest compatible version, add "strict" as an in-line comment

hydra-core >=1.2.0, <1.4.0
2 changes: 1 addition & 1 deletion src/lightning/__setup__.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ def _prepare_extras() -> dict[str, Any]:
}

# project specific extras groups
extras["fabric-all"] = extras["fabric-strategies"] + extras["fabric-examples"]
extras["fabric-all"] = extras["fabric-extra"] + extras["fabric-strategies"] + extras["fabric-examples"]
extras["fabric-dev"] = extras["fabric-all"] + extras["fabric-test"]
extras["pytorch-all"] = extras["pytorch-extra"] + extras["pytorch-strategies"] + extras["pytorch-examples"]
extras["pytorch-dev"] = extras["pytorch-all"] + extras["pytorch-test"]
Expand Down
2 changes: 1 addition & 1 deletion src/lightning_fabric/__setup__.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ def _prepare_extras() -> dict[str, Any]:
}
for req in parse_requirements(extras["strategies"]):
extras[req.key] = [str(req)]
extras["all"] = extras["strategies"] + extras["examples"]
extras["all"] = extras["extra"] + extras["strategies"] + extras["examples"]
extras["dev"] = extras["all"] + extras["test"]
return extras

Expand Down
Loading