blob: a67b761a32897559fea0a0b33f280d3706f342b8 [file] [log] [blame]
Valerio Setti3d82c252024-12-19 16:42:00 +01001#!/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
8import os
9import framework_scripts_path # pylint: disable=unused-import
10from mbedtls_framework import min_requirements
11
12# The default file is located in the same folder as this script.
13DEFAULT_REQUIREMENTS_FILE = 'ci.requirements.txt'
14
15min_requirements.main(os.path.join(os.path.dirname(__file__),
16 DEFAULT_REQUIREMENTS_FILE))