Last week, the IPython community announced its latest release, IPython 7.2, which is available on PyPI and will be soon available on Conda. This version includes some improvements, minor bug fixes, and also new configuration options.
Users can update to IPython 7.2 by using the following command:
pip install ipython --upgrade
In this update, IPython will now list the first 10 subclasses whenever a ‘? / ??’ is used on a class.
Users can now set the OSMagics.cd_force_quiet option to force the %cd magic to behave as if -q was passed. Here is the command:
In [1]: cd /
/
In [2]: %config OSMagics.cd_force_quiet = True
In [3]: cd /tmp
In [4]:
To control this feature, users need to set the TerminalInteractiveShell.prompt_includes_vi_mode to a boolean value (default: True).
There are still some outstanding bugs that will be fixed in the next release, which the community plans to release before the end of the year.
To know more about this release in detail, head over to IPython’s documentation.
IPython 7.0 releases with AsyncIO Integration and new Async libraries
Make Your Presentation with IPython
How to connect your Vim editor to IPython