Gilles Peskine | 12fe74e | 2021-11-17 19:13:34 +0100 | [diff] [blame] | 1 | # Python package requirements for Mbed TLS testing. |
| 2 | |
Gilles Peskine | d78e6cc | 2022-01-22 00:44:07 +0100 | [diff] [blame] | 3 | # Any package used by a script in this repository must be listed here |
| 4 | # or in one of the included files. Normally there should be a minimum |
| 5 | # version constraint; the CI will test with the minimum version. |
| 6 | |
Gilles Peskine | 12fe74e | 2021-11-17 19:13:34 +0100 | [diff] [blame] | 7 | # Use a known version of Pylint, because new versions tend to add warnings |
| 8 | # that could start rejecting our code. |
| 9 | # 2.4.4 is the version in Ubuntu 20.04. It supports Python >=3.5. |
| 10 | pylint == 2.4.4 |
| 11 | |
| 12 | # Use the earliest version of mypy that works with our code base. |
Dave Rodgman | 52af769 | 2022-03-31 14:27:24 +0100 | [diff] [blame] | 13 | # See https://github.com/Mbed-TLS/mbedtls/pull/3953 . |
Gilles Peskine | 12fe74e | 2021-11-17 19:13:34 +0100 | [diff] [blame] | 14 | mypy >= 0.780 |
Jerry Yu | 60313c1 | 2023-10-24 15:42:30 +0800 | [diff] [blame] | 15 | |
| 16 | # For building `tests/data_files/server9-bad-saltlen.crt` and check python |
| 17 | # files. |
| 18 | asn1crypto |