Skip to content

Commit

Permalink
ESP32: avoid installing gdbgui when not needed (#26542)
Browse files Browse the repository at this point in the history
ESP-IDF v4.4.4 requires gdbgui only when Python before 3.11 is used (see
espressif/esp-idf@3974be7).
Avoid installing it when not needed.

Fixes: #25385
  • Loading branch information
agners authored and pull[bot] committed Dec 13, 2023
1 parent 9234878 commit 1671948
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/setup/requirements.esp32.txt
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@ ecdsa>=0.16.0
kconfiglib==13.7.1
construct==2.10.54
python-socketio<5
gdbgui==0.13.2.0 ; platform_machine != 'aarch64' and sys_platform == 'linux'
gdbgui==0.13.2.0 ; python_version < "3.11" and platform_machine != 'aarch64' and sys_platform == 'linux'

0 comments on commit 1671948

Please sign in to comment.