From 3f4a3c5622885fdaf019ae103b4274033332e78a Mon Sep 17 00:00:00 2001 From: Ayush Kamat Date: Wed, 12 Feb 2025 12:53:17 -0800 Subject: [PATCH] updates Signed-off-by: Ayush Kamat --- pyproject.toml | 6 +++--- src/latch/__init__.py | 13 ------------- 2 files changed, 3 insertions(+), 16 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 6996960c..fcdf05c6 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -12,7 +12,7 @@ include = ["src/**/*.py", "src/latch_cli/services/init/*"] [project] name = "latch" -version = "2.56.0" +version = "2.56.1" description = "The Latch SDK" authors = [{ name = "Kenny Workman", email = "kenny@latch.bio" }] maintainers = [ @@ -34,8 +34,8 @@ dependencies = [ "scp>=0.14.0", "boto3>=1.26.0", "tqdm>=4.63.0", - "lytekit==0.15.13", - "lytekitplugins-pods==0.6.2", + "lytekit==0.15.23", + "lytekitplugins-pods==0.7.1", "typing-extensions>=4.12.0", "apscheduler>=3.10.0", "gql==3.4.0", diff --git a/src/latch/__init__.py b/src/latch/__init__.py index f8881fce..00b344a6 100644 --- a/src/latch/__init__.py +++ b/src/latch/__init__.py @@ -39,16 +39,3 @@ small_task, ) from latch.resources.workflow import workflow - - -def _except_hook(type, value, tb): - traceback_path = Path(os.environ.get("latch_traceback_path", "~/traceback.txt")) - traceback_path.parent.mkdir(exist_ok=True) - - with traceback_path.open("w") as f: - traceback.print_tb(tb, file=f) - - return sys.__excepthook__(type, value, tb) - - -sys.excepthook = _except_hook