2021-09-16 16:48:03 +02:00
|
|
|
# Python package requirements for gdbgui support ESP-IDF.
|
|
|
|
# This feature can be enabled by running "install.{sh,bat,ps1,fish} --enable-gdbgui"
|
2024-09-10 12:29:44 +02:00
|
|
|
#
|
|
|
|
# This file lists Python packages without version specifiers. Version details
|
|
|
|
# are stored in a separate constraints file. For more information, visit:
|
|
|
|
# https://docs.espressif.com/projects/esp-idf/en/latest/api-guides/tools/idf-tools.html
|
2021-09-16 16:48:03 +02:00
|
|
|
|
2024-01-03 16:08:32 +01:00
|
|
|
# gdbgui Python 3.11 issue https://github.com/cs01/gdbgui/issues/447 was fixed in 0.15.2.0. Windows users need an
|
|
|
|
# older Python to use since new gdbgui versions don't support Windows anymore.
|
2024-10-22 13:50:41 +02:00
|
|
|
# Python 3.13 is not supported: https://github.com/cs01/gdbgui/issues/494
|
|
|
|
gdbgui; sys_platform != 'win32' and python_version < "3.13"
|
2024-01-03 16:08:32 +01:00
|
|
|
gdbgui; sys_platform == 'win32' and python_version < "3.11"
|