From 6fca33c3c3c1f35b816580a97b9f46308e6ce258 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Janne=20Kiiskil=C3=A4?= Date: Mon, 11 Dec 2023 12:27:40 +0200 Subject: [PATCH] edge-tool / update cryptography to latest (41.0.7) Update crytopgraphy to latest as well. Add test instructions to README.md. --- edge-tool/README.md | 7 +++++++ edge-tool/requirements.txt | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/edge-tool/README.md b/edge-tool/README.md index f9a59c3..b4bbed4 100644 --- a/edge-tool/README.md +++ b/edge-tool/README.md @@ -21,6 +21,13 @@ source ./edge-tool/bin/activate python3 setup.py install ``` +## Run tests + +You can run the tests simply with `pytest``. +``` +pytest -v +``` + ### How to run The entry point for Edge tool is [edge_tool.py](./edge_tool.py). diff --git a/edge-tool/requirements.txt b/edge-tool/requirements.txt index da3082b..93226ac 100644 --- a/edge-tool/requirements.txt +++ b/edge-tool/requirements.txt @@ -1,6 +1,6 @@ docopt==0.6.2 cbor2==5.4.6 pyclibrary==0.2.1 -cryptography==39.0.1 +cryptography==41.0.7 six==1.16.0 pytest==7.1.3