Skip to content

Commit 1902169

Browse files
mrjerryjohnspull[bot]
authored andcommitted
Avoid IPython v7.30.0 due to bug in 'await' (#12371)
IPython v7.30.0 introduced a bug that results in the use of 'await ...' at the shell failing (for more details, see ipython/ipython#13269) For now, let's just avoid that version (it will be fixed in subsequent versions).
1 parent 9e21f82 commit 1902169

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

src/controller/python/build-chip-wheel.py

+6-1
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,12 @@ def finalize_options(self):
116116
requiredPackages = [
117117
"coloredlogs",
118118
'construct',
119-
'ipython',
119+
120+
#
121+
# 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)
122+
# For now, let's just avoid that version.
123+
#
124+
'ipython!=7.30.0',
120125
'dacite',
121126
'rich',
122127
'stringcase',

0 commit comments

Comments
 (0)