From 80b3ed0f8bb1dc2940726bee2e1fa1552fed63a5 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 7 Feb 2023 22:13:43 +0000 Subject: [PATCH 1/2] Bump cryptography in /content/_code-samples/airgapped-wallet/py Bumps [cryptography](https://github.com/pyca/cryptography) from 35.0.0 to 39.0.1. - [Release notes](https://github.com/pyca/cryptography/releases) - [Changelog](https://github.com/pyca/cryptography/blob/main/CHANGELOG.rst) - [Commits](https://github.com/pyca/cryptography/compare/35.0.0...39.0.1) --- updated-dependencies: - dependency-name: cryptography dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- content/_code-samples/airgapped-wallet/py/requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/_code-samples/airgapped-wallet/py/requirements.txt b/content/_code-samples/airgapped-wallet/py/requirements.txt index 26baad5034..fdbc8944ad 100644 --- a/content/_code-samples/airgapped-wallet/py/requirements.txt +++ b/content/_code-samples/airgapped-wallet/py/requirements.txt @@ -4,7 +4,7 @@ base58==2.1.0 certifi==2022.12.7 cffi==1.15.0 colorama==0.4.4 -cryptography==35.0.0 +cryptography==39.0.1 Django==3.2.16 ECPy==1.2.5 h11==0.12.0 From 45db8959811f01777f45cd3588ae3bc3d5c061cd Mon Sep 17 00:00:00 2001 From: Jackson Mills Date: Thu, 9 Mar 2023 14:53:40 -0800 Subject: [PATCH 2/2] Fix unit test on MacOS --- .../_code-samples/airgapped-wallet/py/airgapped-wallet-TEST.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/_code-samples/airgapped-wallet/py/airgapped-wallet-TEST.py b/content/_code-samples/airgapped-wallet/py/airgapped-wallet-TEST.py index 5d85ead6e2..d0c019885f 100644 --- a/content/_code-samples/airgapped-wallet/py/airgapped-wallet-TEST.py +++ b/content/_code-samples/airgapped-wallet/py/airgapped-wallet-TEST.py @@ -121,7 +121,7 @@ def create_wallet_directory(): print("- OS Detected: Windows") File = PureWindowsPath(str(usr) + '/WalletTEST') Path_ = str(PureWindowsPath(str(usr))) - if OS == "Linux": + else: print("- OS Detected: Linux") # If it's Linux, use this path: File = PurePath(str(usr) + '/WalletTEST')