From cf42536d4e1c69c92b6fafa62744372fda611593 Mon Sep 17 00:00:00 2001 From: Gilles Peskine Date: Mon, 10 Oct 2022 22:52:30 +0200 Subject: [PATCH] Add a note that config.py must remain compatible with Python 3.4 Signed-off-by: Gilles Peskine --- scripts/config.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/scripts/config.py b/scripts/config.py index f045f98f95..470c63dc8f 100755 --- a/scripts/config.py +++ b/scripts/config.py @@ -7,6 +7,11 @@ Basic usage, to read the Mbed TLS or Mbed Crypto configuration: if 'MBEDTLS_RSA_C' in config: print('RSA is enabled') """ +# Note that as long as Mbed TLS 2.28 LTS is maintained, the version of +# this script in the mbedtls-2.28 branch must remain compatible with +# Python 3.4. The version in development may only use more recent features +# in parts that are not backported to 2.28. + ## Copyright The Mbed TLS Contributors ## SPDX-License-Identifier: Apache-2.0 ##