Changelog for
python3-jupyter_ipython-5.3.0-41.3.noarch.rpm :
Fri Apr 14 14:00:00 2017 toddrme2178AATTgmail.com
- Remove unneeded python3-pathlib2 dependency. This is only needed
for python3 <= 3.3, which we don\'t ship anymore.
Fri Apr 7 14:00:00 2017 toddrme2178AATTgmail.com
- Update to IPython 5.3
* Fix a bug in ``set_next_input`` leading to a crash of terminal IPython.
:ghpull:`10231`, :ghissue:`10296`, :ghissue:`10229`
* Always wait for editor inputhook for terminal IPython :ghpull:`10239`,
:ghpull:`10240`
* Disable ``_ipython_display_`` in terminal :ghpull:`10249`, :ghpull:`10274`
* Update terminal colors to be more visible by default on windows
:ghpull:`10260`, :ghpull:`10238`, :ghissue:`10281`
* Add Ctrl-Z shortcut (suspend) in terminal debugger :ghpull:`10254`,
:ghissue:`10273`
* Indent on new line by looking at the text before the cursor :ghpull:`10264`,
:ghpull:`10275`, :ghissue:`9283`
* Update QtEventloop integration to fix some matplotlib integration issues
:ghpull:`10201`, :ghpull:`10311`, :ghissue:`10201`
* Respect completions display style in terminal debugger :ghpull:`10305`,
:ghpull:`10313`
* Add a config option ``TerminalInteractiveShell.extra_open_editor_shortcuts``
to enable extra shortcuts to open the input in an editor. These are :kbd:`v`
in vi mode, and :kbd:`C-X C-E` in emacs mode (:ghpull:`10330`).
The :kbd:`F2` shortcut is always enabled.
- Update to IPython 5.2.2
* Fix error when starting with ``IPCompleter.limit_to__all__`` configured.
- Update to IPython 5.2.1
* Fix tab completion in the debugger. :ghpull:`10223`
- Update to IPython 5.2
* restore IPython\'s debugger to raise on quit. :ghpull:`10009`
* The configuration value ``c.TerminalInteractiveShell.highlighting_style`` can
now directly take a class argument for custom color style. :ghpull:`9848`
* Correctly handle matplotlib figures dpi :ghpull:`9868`
* Deprecate ``-e`` flag for the ``%notebook`` magic that had no effects.
:ghpull:`9872`
* You can now press F2 while typing at a terminal prompt to edit the contents
in your favourite terminal editor. Set the :envvar:`EDITOR` environment
variable to pick which editor is used. :ghpull:`9929`
* sdists will now only be ``.tar.gz`` as per upstream PyPI requirements.
:ghpull:`9925`
* :any:`IPython.core.debugger` have gained a ``set_trace()`` method for
convenience. :ghpull:`9947`
* The \'smart command mode\' added to the debugger in 5.0 was removed, as more
people preferred the previous behaviour. Therefore, debugger commands such as
``c`` will act as debugger commands even when ``c`` is defined as a variable.
:ghpull:`10050`
* Fixes OS X event loop issues at startup, :ghpull:`10150`
* Deprecate the ``%autoindent`` magic. :ghpull:`10176`
* Emit a :any:`DeprecationWarning` when setting the deprecated
``limit_to_all`` option of the completer. :ghpull:`10198`
* The :cellmagic:`capture` magic can now capture the result of a cell (from an
expression on the last line), as well as printed and displayed output.
:ghpull:`9851`.
Thu Nov 10 13:00:00 2016 toddrme2178AATTgmail.com
- Update do_not_reload_numpy_globals.patch to really fix errors
in iptest.
Tue Nov 1 13:00:00 2016 toddrme2178AATTgmail.com
- Add do_not_reload_numpy_globals.patch to fix errors in iptest.
Sun Oct 2 14:00:00 2016 arunAATTgmx.de
- update to version 5.1.0:
* Broken \"%timeit\" on Python2 due to the use of
\"__qualname__\". :ghpull:`9804`
* Restore \"%gui qt\" to create and return a \"QApplication\" if
necessary. :ghpull:`9789`
* Don\'t set terminal title by default. :ghpull:`9801`
* Preserve indentation when inserting newlines with
\"Ctrl-O\". :ghpull:`9770`
* Restore completion in debugger. :ghpull:`9785`
* Deprecate \"IPython.core.debugger.Tracer()\" in favor of simpler,
newer, APIs. :ghpull:`9731`
* Restore \"NoOpContext\" context manager removed by mistake, and add
`DeprecationWarning`. :ghpull:`9765`
* Add option allowing \"Prompt_toolkit\" to use 24bits
colors. :ghpull:`9736`
* Fix for closing interactive matplotlib windows on OS
X. :ghpull:`9854`
* An embedded interactive shell instance can be used more than
once. :ghpull:`9843`
* More robust check for whether IPython is in a
terminal. :ghpull:`9833`
* Better pretty-printing of dicts on PyPy. :ghpull:`9827`
* Some coloured output now looks better on dark background command
prompts in Windows. :ghpull:`9838`
* Improved tab completion of paths on Windows . :ghpull:`9826`
* Fix tkinter event loop integration on Python 2 with \"future\"
installed. :ghpull:`9824`
* Restore \"Ctrl-\\\" as a shortcut to quit IPython.
* Make \"get_ipython()\" accessible when modules are imported by
startup files. :ghpull:`9818`
* Add support for running directories containing a \"__main__.py\"
file with the \"ipython\" command. :ghpull:`9813`
* True Color feature
Mon Jul 11 14:00:00 2016 toddrme2178AATTgmail.com
- Update to 5.0
+ New terminal interface
IPython 5 features a major upgrade to the terminal interface, bringing live
syntax highlighting as you type, proper multiline editing and multiline paste,
and tab completions that don\'t clutter up your history.
+ Backwards incompatible changes
* The ``%install_ext`` magic function, deprecated since 4.0, has now been deleted.
You can distribute and install extensions as packages on PyPI.
* Callbacks registered while an event is being handled will now only be called
for subsequent events; previously they could be called for the current event.
Similarly, callbacks removed while handling an event
*will
* always get that
event. See :ghissue:`9447` and :ghpull:`9453`.
* Integration with pydb has been removed since pydb development has been stopped
since 2012, and pydb is not installable from PyPI.
* The ``autoedit_syntax`` option has apparently been broken for many years.
It has been removed.
+ Provisional Changes
* When the docrepr package is installed setting the boolean flag
InteractiveShell.sphinxify_docstring to True, will process the various
object through sphinx before displaying them (see the docrepr package
documentation for more information.
+ Deprecated Features
* ``hooks.fix_error_editor`` seems unused and is pending deprecation.
* `IPython/core/excolors.py:ExceptionColors` is deprecated.
* `IPython.core.InteractiveShell:write()` is deprecated; use `sys.stdout` instead.
* `IPython.core.InteractiveShell:write_err()` is deprecated; use `sys.stderr` instead.
* The `formatter` keyword argument to `Inspector.info` in `IPython.core.oinspec` has no effect.
* The `global_ns` keyword argument of IPython Embed was deprecated, and has no effect. Use `module` keyword argument instead.
+ Known Issues:
* ``
`` Key does not dismiss the completer and does not clear the current
buffer. This is an on purpose modification due to current technical
limitation. Cf :ghpull:`9572`. Escape the control character which is used
for other shortcut, and there is no practical way to distinguish. Use Ctr-G
or Ctrl-C as an alternative.
* Cannot use ``Shift-Enter`` and ``Ctrl-Enter`` to submit code in terminal. cf
:ghissue:`9587` and :ghissue:`9401`. In terminal there is no practical way to
distinguish these key sequences from a normal new line return.
* ``PageUp`` and ``pageDown`` do not move through completion menu.
* Color styles might not adapt to terminal emulator themes. This will need new
version of Pygments to be released, and can be mitigated with custom themes.
Tue May 17 14:00:00 2016 toddrme2178AATTgmail.com
- Update to 4.2.0
- Fix ``ipython -i`` on errors, which was broken in 4.1.
- The delay meant to highlight deprecated commands that have moved to jupyter has been removed.
- Improve compatibility with future versions of traitlets and matplotlib.
- Use stdlib :func:`python:shutil.get_terminal_size` to measure terminal width when displaying tracebacks
(provided by ``backports.shutil_get_terminal_size`` on Python 2).
Sun May 8 14:00:00 2016 arunAATTgmx.de
- specfile:
* updated source url to files.pythonhosted.org
Fri Mar 4 13:00:00 2016 arunAATTgmx.de
- update to version 4.1.2:
* fixes installation issues with some versions of setuptools.
Wed Feb 3 13:00:00 2016 arunAATTgmx.de
- update to version 4.1.1:
* Backport #9209: Don\'t import IPython to check version number in
setup
Wed Feb 3 13:00:00 2016 toddrme2178AATTgmail.com
- Update to 4.1.0
* Release February, 2016. IPython 4.1 contain mostly bug fixes.
It though contain a few improvement.
* IPython debugger (IPdb) now supports the number of context
lines for the where (and w) commands. The context keyword is
also available in various APIs. See PR :ghpull:`9097`
* YouTube video will now show thumbnail when exported to a media
that do not support video. (:ghpull:`9086`)
* Add warning when running ipython when subcommand
is deprecated. jupyter should now be used.
* Code in %pinfo (also known as ??) are now highlighter
(:ghpull:`8947`)
* %aimport now support module completion. (:ghpull:`8884`)
* ipdb output is now colored ! (:ghpull:`8842`)
* Add ability to transpose columns for completion:
(:ghpull:`8748`)
* Many many docs improvements and bug fixes
Wed Jan 20 13:00:00 2016 arunAATTgmx.de
- update to version 4.0.3:
* Python 3.5 bug in that could crash during shutdown, triggered by
deprecations in traitlets 4.1.
* Typo in deprecation message for nbconvert
Sat Jan 16 13:00:00 2016 arunAATTgmx.de
- specfile:
* update copyright year
- update to version 4.0.2:
* Fix backward-compatiblity shim for \"IPython.Config\", which
should have been deprecated instead of removed. This will be
removed in 5.0.
Fri Nov 27 13:00:00 2015 arunAATTgmx.de
- update to version 4.0.1:
* Installation on some systems
* Compatibility with CPython 3.4.4
* Compatibility with Qt5
Thu Oct 1 14:00:00 2015 toddrme2178AATTgmail.com
- Build documentation
This is in a separate spec file to avoid dependency loops
- Obsolete python3-IPython
- Split the iptest executable into its own subpackage
This has a bunch of testing dependencies that are not otherwise
necessary.
Fri Aug 21 14:00:00 2015 toddrme2178AATTgmail.com
- Add conflict with older versions of python3-IPython
Mon Aug 17 14:00:00 2015 toddrme2178AATTgmail.com
- Initial version