From fe155a452c735588079db1b48a178ecf3c489047 Mon Sep 17 00:00:00 2001 From: Stefan Agner Date: Tue, 16 May 2023 18:33:33 +0200 Subject: [PATCH] [python] drop unnecessary dependency to pycrypto 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", ]