Skip to content

Commit f91cac1

Browse files
authored
drop Windows support for menuconfig < IDF 5.x
no change in function since always >= IDF 5.x is used The community fork do not support old versions
1 parent 3626bdc commit f91cac1

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

builder/frameworks/espidf.py

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1238,16 +1238,16 @@ def _get_installed_pip_packages(python_exe_path):
12381238
)
12391239
)
12401240

1241-
# A special "esp-windows-curses" python package is required on Windows
1242-
# for Menuconfig on IDF <5
1243-
if not IDF5 and "esp-windows-curses" not in installed_packages:
1244-
env.Execute(
1245-
env.VerboseAction(
1246-
'"%s" -m pip install "file://%s/tools/kconfig_new/esp-windows-curses"'
1247-
% (python_exe_path, FRAMEWORK_DIR),
1248-
"Installing windows-curses package",
1249-
)
1250-
)
1241+
# # A special "esp-windows-curses" python package is required on Windows
1242+
# # for Menuconfig on IDF <5
1243+
# if not IDF5 and "esp-windows-curses" not in installed_packages:
1244+
# env.Execute(
1245+
# env.VerboseAction(
1246+
# '"%s" -m pip install "file://%s/tools/kconfig_new/esp-windows-curses"'
1247+
# % (python_exe_path, FRAMEWORK_DIR),
1248+
# "Installing windows-curses package",
1249+
# )
1250+
# )
12511251

12521252

12531253
def get_idf_venv_dir():

0 commit comments

Comments
 (0)