From 96cfdf3184f5fac4c744fa9b8bc76a3e69fe2b65 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marek=20I=C5=A1tok?= Date: Wed, 26 Aug 2020 08:40:05 +0200 Subject: [PATCH] tools: fix windows incompatibility with gdbgui>=0.14 gdbgui intentionally (https://github.com/cs01/gdbgui/pull/346) introduced dependencies that are incompatible with windows, and don't seem to have plans to resolve them anytime soon Closes https://github.com/espressif/esp-idf/issues/5782 Closes https://github.com/espressif/esp-idf/issues/5787 Merges https://github.com/espressif/esp-idf/pull/5794 --- requirements.txt | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index 21e889a763..574a5272a8 100644 --- a/requirements.txt +++ b/requirements.txt @@ -11,7 +11,9 @@ future>=0.15.2 cryptography>=2.1.4 pyparsing>=2.0.3,<2.4.0 pyelftools>=0.22 -gdbgui>=0.13.2.0 +gdbgui==0.13.2.0 +# 0.13.2.1 supports Python 3.6+ only +# Windows is not supported since 0.14.0.0. See https://github.com/cs01/gdbgui/issues/348 pygdbmi<=0.9.0.2 # The pygdbmi required max version 0.9.0.2 since 0.9.0.3 is not copatible with latest gdbgui (>=0.13.2.0) reedsolo>=1.5.3,<=1.5.4