From f91cac1eac68eb77a505c9cef44954a74263a1cc Mon Sep 17 00:00:00 2001 From: Jason2866 <24528715+Jason2866@users.noreply.github.com> Date: Sat, 20 Jul 2024 15:36:22 +0200 Subject: [PATCH] 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 --- builder/frameworks/espidf.py | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/builder/frameworks/espidf.py b/builder/frameworks/espidf.py index 28e081d..3ad83b8 100644 --- a/builder/frameworks/espidf.py +++ b/builder/frameworks/espidf.py @@ -1238,16 +1238,16 @@ def install_python_deps(): ) ) - # A special "esp-windows-curses" python package is required on Windows - # for Menuconfig on IDF <5 - if not IDF5 and "esp-windows-curses" not in installed_packages: - env.Execute( - env.VerboseAction( - '"%s" -m pip install "file://%s/tools/kconfig_new/esp-windows-curses"' - % (python_exe_path, FRAMEWORK_DIR), - "Installing windows-curses package", - ) - ) +# # A special "esp-windows-curses" python package is required on Windows +# # for Menuconfig on IDF <5 +# if not IDF5 and "esp-windows-curses" not in installed_packages: +# env.Execute( +# env.VerboseAction( +# '"%s" -m pip install "file://%s/tools/kconfig_new/esp-windows-curses"' +# % (python_exe_path, FRAMEWORK_DIR), +# "Installing windows-curses package", +# ) +# ) def get_idf_venv_dir():