File tree Expand file tree Collapse file tree 1 file changed +5
-9
lines changed Expand file tree Collapse file tree 1 file changed +5
-9
lines changed Original file line number Diff line number Diff line change @@ -1097,17 +1097,13 @@ def _get_installed_pip_packages(python_exe_path):
1097
1097
# https://github.com/platformio/platformio-core/issues/4614
1098
1098
"urllib3" : "<2" ,
1099
1099
# https://github.com/platformio/platform-espressif32/issues/635
1100
- "cryptography" : ">=2.1.4,<35.0.0" ,
1101
- "future" : ">=0.15.2 " ,
1102
- "pyparsing" : ">=2.0.3,<2.4.0" ,
1103
- "kconfiglib" : "= =13.7.1" ,
1104
- "idf-component-manager" : "~=1.0" ,
1100
+ "cryptography" : "~=41.0.1" if IDF5 else " >=2.1.4,<35.0.0" ,
1101
+ "future" : ">=0.18.3 " ,
1102
+ "pyparsing" : "~=3.0.9" if IDF5 else " >=2.0.3,<2.4.0" ,
1103
+ "kconfiglib" : "~=14.1.0" if IDF5 else "~ =13.7.1" ,
1104
+ "idf-component-manager" : "~=1.2.3" if IDF5 else "~=1. 0" ,
1105
1105
}
1106
1106
1107
- if IDF5 :
1108
- # Remove specific versions for IDF5 as not required
1109
- deps = {dep : "" for dep in deps }
1110
-
1111
1107
python_exe_path = get_python_exe ()
1112
1108
installed_packages = _get_installed_pip_packages (python_exe_path )
1113
1109
packages_to_install = []
You can’t perform that action at this time.
0 commit comments