From: Shivani Tipnis Date: Fri, 16 Nov 2018 05:57:00 +0000 (+0530) Subject: Update minimum version for cryptography package required X-Git-Tag: v3.3-beta1~97^2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=e1774cb6f90416c7cbbe7b50323d3154dba7de21;p=esp-idf Update minimum version for cryptography package required --- diff --git a/requirements.txt b/requirements.txt index 7051195975..14038d8c85 100644 --- a/requirements.txt +++ b/requirements.txt @@ -7,4 +7,4 @@ setuptools # pyserial>=3.0 future>=0.15.2 -cryptography +cryptography>=2.1.4 diff --git a/tools/check_python_dependencies.py b/tools/check_python_dependencies.py index d8767004b6..f68f887e9c 100755 --- a/tools/check_python_dependencies.py +++ b/tools/check_python_dependencies.py @@ -44,13 +44,13 @@ if __name__ == "__main__": import cryptography except ImportError: print("Please run the following command to install MSYS2's MINGW Python cryptography package:") - print("pacman -S mingw-w64-i686-python%d-cryptography" % (sys.version_info[0],)) + print("pacman -Sy mingw-w64-i686-python%d-cryptography" % (sys.version_info[0],)) failed = True try: import setuptools except ImportError: print("Please run the following command to install MSYS2's MINGW Python setuptools package:") - print("pacman -S mingw-w64-i686-python%d-setuptools" % (sys.version_info[0],)) + print("pacman -Sy mingw-w64-i686-python%d-setuptools" % (sys.version_info[0],)) failed = True if failed: sys.exit(1)