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
This commit is contained in:
Jason2866
2024-07-20 15:36:22 +02:00
committed by GitHub
parent 3626bdc78c
commit f91cac1eac
+10 -10
View File
@@ -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():