Skip to content

Commit

Permalink
Avoid IPython v7.30.0 due to bug in 'await' (#12371)
Browse files Browse the repository at this point in the history
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).
  • Loading branch information
mrjerryjohns authored and pull[bot] committed Jan 25, 2022
1 parent ed0e4ab commit 2138386
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/controller/python/build-chip-wheel.py
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down

0 comments on commit 2138386

Please sign in to comment.