min_requirements.py (564B)
1 #!/usr/bin/env python3 2 """Install all the required Python packages, with the minimum Python version. 3 """ 4 5 # Copyright The Mbed TLS Contributors 6 # SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later 7 8 import os 9 import framework_scripts_path # pylint: disable=unused-import 10 from mbedtls_framework import min_requirements 11 12 # The default file is located in the same folder as this script. 13 DEFAULT_REQUIREMENTS_FILE = 'ci.requirements.txt' 14 15 min_requirements.main(os.path.join(os.path.dirname(__file__), 16 DEFAULT_REQUIREMENTS_FILE))