Skip to content

Commit

Permalink
Merge branch 'main' of github.com:latchbio/latch into ayush/windows
Browse files Browse the repository at this point in the history
  • Loading branch information
ayushkamat committed Aug 30, 2024
2 parents 4b63d8a + 588adf2 commit 500fe3b
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 4 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,12 @@ Types of changes

# Latch SDK Changelog

## 2.52.0 - 2024-08-30

### Fixed

* Make `latch cp` work on Windows without WSL

## 2.51.2 - 2024-08-27

### Fixed
Expand Down
3 changes: 2 additions & 1 deletion latch/ldata/_transfer/progress.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,8 @@ def __init__(
get_progress_bar() for _ in range(num_task_bars)
]
self.free_indices = {i for i in range(num_task_bars)}
self.task_bar_sema = BoundedSemaphore(num_task_bars)
if num_task_bars > 0:
self.task_bar_sema = BoundedSemaphore(num_task_bars)

self.usage: Dict[str, int] = {}

Expand Down
1 change: 0 additions & 1 deletion latch_cli/services/preview.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import webbrowser
from pathlib import Path
from typing import List

from flytekit.core.workflow import PythonFunctionWorkflow
from google.protobuf.json_format import MessageToJson
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

setup(
name="latch",
version="v2.51.2",
version="v2.52.1",
author_email="[email protected]",
description="The Latch SDK",
packages=find_packages(),
Expand All @@ -31,7 +31,7 @@
"click>=8.0",
"docker>=7.1.0",
"paramiko>=3.2.0",
# rahul: remove TripleDES deprectation warning by pinning cryptography
# rahul: remove TripleDES deprecation warning by pinning cryptography
# https://github.com/paramiko/paramiko/issues/2419
"cryptography<43.0.0",
"scp>=0.14.0",
Expand Down

0 comments on commit 500fe3b

Please sign in to comment.