From 2051759dc4561f3ec2cca1441da0216d710c6801 Mon Sep 17 00:00:00 2001 From: Stefan Agner Date: Thu, 18 May 2023 19:59:58 +0200 Subject: [PATCH] [python] drop unnecessary dependency to pycrypto (#26611) PR #21567 introduced an unnecessary dependency to pycrypto. From PyPI it seems that pycrypto is largely unmaintained, and I did not found a use in the Python bindings or in the Python test. Also drop the comment about cryptography and ecdsa usage as the library is meanwhile used in the core CHIP Python libraries. --- src/controller/python/BUILD.gn | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/controller/python/BUILD.gn b/src/controller/python/BUILD.gn index 750de2b837c170..3f9e310e44e1ee 100644 --- a/src/controller/python/BUILD.gn +++ b/src/controller/python/BUILD.gn @@ -309,10 +309,7 @@ chip_python_wheel_action("chip-core") { "ipdb", "deprecation", "mobly", - - # Crypto libraries for complex tests and internal Python controller usage "cryptography", - "pycrypto", "ecdsa", ]