-
Notifications
You must be signed in to change notification settings - Fork 179
Closed
Description
Hi
Since ARMmbed/mbed-os#8542,
python modules version check is more strict.
But I think this doesn't really work ?
- missing module check
In my environment, urllib3 is installed.
But if I print pkg here:
Line 1626 in e993263
missing.append(pkg) |
=> I always got urllib3[secure]
- module version check
"pip install -r requirements.txt" command is executed only if "missing" is not empty:
Line 1628 in e993263
if missing and install_requirements: |
=> this means that if each package is present, module version is not checked
and ARMmbed/mbed-os#8542 is not useful?