Skip to content

Commit

Permalink
Merge pull request #481 from latchbio/rahuldesai1/remove-cryptography…
Browse files Browse the repository at this point in the history
…-warnings

remove cryptography warnings by pinning version
  • Loading branch information
rahuldesai1 authored Aug 2, 2024
2 parents 9de79da + 07e45f7 commit 4b9be2a
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
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.49.10 - 2024-08-02

### Fixed

* Pin `cryptography` to remove warning messages when importing paramiko

## 2.49.9 - 2024-08-01

### Fixed
Expand Down
5 changes: 4 additions & 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.49.9",
version="v2.49.10",
author_email="[email protected]",
description="The Latch SDK",
packages=find_packages(),
Expand All @@ -31,6 +31,9 @@
"click>=8.0",
"docker>=7.1.0",
"paramiko>=3.2.0",
# rahul: remove TripleDES deprectation warning by pinning cryptography
# https://github.com/paramiko/paramiko/issues/2419
"cryptography<43.0.0",
"scp>=0.14.0",
"boto3>=1.26.0",
"tqdm>=4.63.0",
Expand Down

0 comments on commit 4b9be2a

Please sign in to comment.