]> granicus.if.org Git - esp-idf/commitdiff
Update minimum version for cryptography package required
authorShivani Tipnis <shivani@espressif.com>
Fri, 16 Nov 2018 05:57:00 +0000 (11:27 +0530)
committerShivani Tipnis <shivani@espressif.com>
Mon, 19 Nov 2018 05:43:37 +0000 (11:13 +0530)
requirements.txt
tools/check_python_dependencies.py

index 70511959753cddc335b73210f5cf062316bee338..14038d8c85171b36954346341a28499f9b68df11 100644 (file)
@@ -7,4 +7,4 @@ setuptools
 #
 pyserial>=3.0
 future>=0.15.2
-cryptography
+cryptography>=2.1.4
index d8767004b6ec57428057b2b65fffaa65423e8cf8..f68f887e9cb4ae73e5caa6cf48fa01a52df24fa0 100755 (executable)
@@ -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)