| # Python package requirements for Mbed TLS testing. |
| |
| -r driver.requirements.txt |
| -r ../framework/scripts/ci.requirements.txt |
| |
| # The dependencies below are only used in scripts that we run on the Linux CI. |
| |
| # Use a known version of Pylint, because new versions tend to add warnings |
| # that could start rejecting our code. |
| # 2.4.4 is the version in Ubuntu 20.04. It supports Python >=3.5. |
| pylint == 2.4.4; platform_system == 'Linux' |
| |
| # Use a version of mypy that is compatible with our code base. |
| # mypy <0.940 is known not to work: see commit |
| # :/Upgrade mypy to the last version supporting Python 3.6 |
| # mypy >=0.960 is known not to work: |
| # https://github.com/Mbed-TLS/mbedtls-framework/issues/50 |
| # mypy 0.942 is the version in Ubuntu 22.04. |
| mypy == 0.942; platform_system == 'Linux' |
| |
| # More requirements for scripts in the framework that might not work in |
| # older versions of Python. Note that requirements that are not available |
| # in the oldest version of Python on our CI must be annodated with |
| # "python >= ...". |
| -r ../framework/util/requirements.txt |