File tree Expand file tree Collapse file tree 1 file changed +7
-4
lines changed Expand file tree Collapse file tree 1 file changed +7
-4
lines changed Original file line number Diff line number Diff line change @@ -1277,14 +1277,17 @@ def _get_installed_pip_packages(python_exe_path):
1277
1277
# https://github.com/platformio/platformio-core/issues/4614
1278
1278
"urllib3" : "<2" ,
1279
1279
# https://github.com/platformio/platform-espressif32/issues/635
1280
- "cryptography" : "~=41.0.1" if IDF5 else ">=2.1.4,<35.0.0" ,
1281
- "future" : ">=0.18.3" ,
1280
+ "cryptography" : "~=44.0.0" if IDF5 else ">=2.1.4,<35.0.0" ,
1282
1281
"pyparsing" : ">=3.1.0,<4" if IDF5 else ">=2.0.3,<2.4.0" ,
1283
- "kconfiglib" : "~=14.1.0" if IDF5 else "~=13.7.1" ,
1284
1282
"idf-component-manager" : "~=1.5.2" if IDF5 else "~=1.0" ,
1285
- "esp-idf-kconfig" : ">=1.4.2,<2.0 .0"
1283
+ "esp-idf-kconfig" : "~=2.5 .0"
1286
1284
}
1287
1285
1286
+ if not IDF5 :
1287
+ deps ["kconfiglib" ] = "~=13.7.1"
1288
+ deps ["future" ] = ">=0.18.3"
1289
+ deps ["esp-idf-kconfig" ] = ">=1.4.2,<2.0.0"
1290
+
1288
1291
if sys_platform .system () == "Darwin" and "arm" in sys_platform .machine ().lower ():
1289
1292
deps ["chardet" ] = ">=3.0.2,<4"
1290
1293
You can’t perform that action at this time.
0 commit comments