Skip to content

Commit

Permalink
fixies again
Browse files Browse the repository at this point in the history
Signed-off-by: Ayush Kamat <[email protected]>
  • Loading branch information
ayushkamat committed Nov 17, 2023
1 parent 1e2b219 commit e50e5b9
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 3 deletions.
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,20 @@ Types of changes

# Latch SDK Changelog

## 2.36.10 - 2023-11-17

### Fixed

* Snakemake
+ bug in 2.36.9 where output directories would still fail to upload because of a missing `pathlib.Path` -> `str` conversion.

## 2.36.9 - 2023-11-16

### Fixed

* Snakemake
+ bug where a snakemake task would fail to upload output directories

## 2.36.8 - 2023-11-14

### Fixed
Expand Down
4 changes: 2 additions & 2 deletions latch_cli/snakemake/workflow.py
Original file line number Diff line number Diff line change
Expand Up @@ -1352,7 +1352,7 @@ def get_fn_code(
if local.is_file():
lp.upload(local, remote)
else:
lp.upload_directory(local, remote)
lp.upload_directory(str(local), remote)
print(" Done")
Expand All @@ -1370,7 +1370,7 @@ def get_fn_code(
if local.is_file():
lp.upload(local, remote)
else:
lp.upload_directory(local, remote)
lp.upload_directory(str(local), remote)
print(" Done")
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

setup(
name="latch",
version="v2.36.9-alpha1",
version="v2.36.10",
author_email="[email protected]",
description="The Latch SDK",
packages=find_packages(),
Expand Down

0 comments on commit e50e5b9

Please sign in to comment.