diff --git a/src/controller/python/build-chip-wheel.py b/src/controller/python/build-chip-wheel.py index f9b141ca5897be..565fec7329bac2 100644 --- a/src/controller/python/build-chip-wheel.py +++ b/src/controller/python/build-chip-wheel.py @@ -116,7 +116,12 @@ def finalize_options(self): requiredPackages = [ "coloredlogs", 'construct', - 'ipython', + + # + # IPython 7.30.0 has a bug which results in the use of await ... failing on some platforms (see https://github.com/ipython/ipython/pull/13269) + # For now, let's just avoid that version. + # + 'ipython!=7.30.0', 'dacite', 'rich', 'stringcase',