Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump Lightning Cloud to 0.5.57 #19099

Merged
merged 2 commits into from
Dec 1, 2023
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
2 changes: 1 addition & 1 deletion requirements/app/app.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
lightning-cloud == 0.5.56 # Must be pinned to ensure compatibility
lightning-cloud == 0.5.57 # Must be pinned to ensure compatibility
packaging
typing-extensions >=4.4.0, <4.8.0
deepdiff >=5.7.0, <6.6.0
Expand Down
2 changes: 1 addition & 1 deletion src/lightning/data/streaming/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
# This is required for full pytree serialization / deserialization support
_TORCH_GREATER_EQUAL_2_1_0 = RequirementCache("torch>=2.1.0")
_VIZ_TRACKER_AVAILABLE = RequirementCache("viztracer")
_LIGHTNING_CLOUD_LATEST = RequirementCache("lightning-cloud>=0.5.56")
_LIGHTNING_CLOUD_LATEST = RequirementCache("lightning-cloud>=0.5.57")
_BOTO3_AVAILABLE = RequirementCache("boto3")

# DON'T CHANGE ORDER
Expand Down
1 change: 1 addition & 0 deletions src/lightning/data/streaming/dataset.py
Original file line number Diff line number Diff line change
Expand Up @@ -428,6 +428,7 @@ def _collect_distributed_state_dict(state_dict: Dict[str, Any], world_size: int)


def _should_replace_path(path: str) -> bool:
"""Whether the input path is a special path to be replaced."""
if path is None or path == "":
return True

Expand Down