From 0f8a4bf42a387bf2f8c977a10520176856e66946 Mon Sep 17 00:00:00 2001 From: Xiaonan Shen Date: Sat, 17 Apr 2021 23:13:35 +0800 Subject: [PATCH] Limit cryptography to >=3.1 --- requirements.txt | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/requirements.txt b/requirements.txt index 90e11d7..caeee57 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,5 +1,5 @@ paho_mqtt -cryptography +cryptography>=3.1 requests zeroconf attrs diff --git a/setup.py b/setup.py index 819b81b..e1d72dc 100644 --- a/setup.py +++ b/setup.py @@ -3,7 +3,7 @@ REQUIRES = [ "paho_mqtt", - "cryptography", + "cryptography>=3.1", "requests", "zeroconf", "attrs",