OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:jupyter/python-ipykernel?expand=0&rev=38
531 lines
23 KiB
Plaintext
531 lines
23 KiB
Plaintext
-------------------------------------------------------------------
|
||
Wed Sep 22 15:23:38 UTC 2021 - Matej Cepl <mcepl@suse.com>
|
||
|
||
- Deduplicate files in _jupyter_kernel_dir.
|
||
|
||
-------------------------------------------------------------------
|
||
Wed Sep 15 05:29:16 UTC 2021 - Arun Persaud <arun@gmx.de>
|
||
|
||
- specfile:
|
||
* require debugpy for build
|
||
|
||
- update to version 6.4.1:
|
||
* Merged PRs
|
||
+ debugpy is now a build requirement #773 (@minrk)
|
||
|
||
- changes from version 6.4.0:
|
||
* Enhancements made
|
||
+ Make json_clean a no-op for jupyter-client >= 7 #708
|
||
(@martinRenou)
|
||
* Bugs fixed
|
||
+ Do not assume kernels have loops #766 (@Carreau)
|
||
+ Fix undefined variable #765 (@martinRenou)
|
||
* Maintenance and upkeep improvements
|
||
+ Make ipykernel work without debugpy #767 (@frenzymadness)
|
||
+ Stop using deprecated recv_multipart when using in-process
|
||
socket. #762 (@Carreau)
|
||
+ Update some warnings with instructions and version number. #761
|
||
(@Carreau)
|
||
|
||
-------------------------------------------------------------------
|
||
Mon Sep 6 11:20:30 UTC 2021 - Ben Greiner <code@bnavigator.de>
|
||
|
||
- Update to version 6.3.1
|
||
* Add dependency on IPython genutils gh#ipython/ipykernel#756
|
||
|
||
-------------------------------------------------------------------
|
||
Mon Aug 30 19:28:52 UTC 2021 - Ben Greiner <code@bnavigator.de>
|
||
|
||
- Update to version 6.3.0
|
||
* Add deep variable inspection #753 (@JohanMabille)
|
||
* Add IPKernelApp.capture_fd_output config to disable FD-level
|
||
capture #752 (@minrk)
|
||
* Remove a lot of nose stuff
|
||
- Release 6.2.0
|
||
* Add Support for Message Based Interrupt #741 (@afshin)
|
||
- Release 6.1.0
|
||
* Implemented richInspectVariable request handler #734
|
||
(@JohanMabille)
|
||
* Fix exception raised by OutStream.write #726 (@SimonKrughoff)
|
||
|
||
-------------------------------------------------------------------
|
||
Wed Jul 28 12:08:06 UTC 2021 - Markéta Machová <mmachova@suse.com>
|
||
|
||
- Skip pickle tests to get rid of ipyparallel dependency which we
|
||
don't want in Ring1 stagings
|
||
|
||
-------------------------------------------------------------------
|
||
Fri Jul 23 08:22:28 UTC 2021 - Ben Greiner <code@bnavigator.de>
|
||
|
||
- Update to version 6.0.3
|
||
* KernelApp: rename ports variable to avoid override #731
|
||
(@amorenoz)
|
||
- Release version 6.0.2
|
||
* Add watchfd keyword to InProcessKernel OutStream initialization
|
||
#727 (@rayosborn)
|
||
* Fix typo in eventloops.py #711 (@selasley)
|
||
* [bugfix] fix in setup.py (comma before appnope) #709
|
||
(@jstriebel)
|
||
* Add upper bound to dependency versions. #714 (@martinRenou)
|
||
* Replace non-existing function. #723 (@Carreau)
|
||
* Remove unused variables #722 (@Carreau)
|
||
* Do not use bare except #721 (@Carreau)
|
||
* misc whitespace and line too long #720 (@Carreau)
|
||
* Formatting: remove semicolon #719 (@Carreau)
|
||
* Clean most flake8 unused import warnings. #718 (@Carreau)
|
||
* Minimal flake8 config #717 (@Carreau)
|
||
* Remove CachingCompiler's filename_mapper #710 (@martinRenou)
|
||
- Release version 6.0.1
|
||
* Fix Tk and asyncio event loops #704 (@ccordoba12)
|
||
* Stringify variables that are not json serializable in
|
||
inspectVariable #702 (@JohanMabille)
|
||
- Install kernelspecs for each flavor. Remove common
|
||
jupyter-ipykernel package
|
||
|
||
-------------------------------------------------------------------
|
||
Thu Jul 1 17:17:26 UTC 2021 - Ben Greiner <code@bnavigator.de>
|
||
|
||
- Update to version 6.0.0
|
||
IPykernel 6.0 is the first major release in about two years,
|
||
that brings a number of improvements, code cleanup, and new
|
||
features to IPython.
|
||
IPykernel 6 should contain all changes of the 5.x series, in
|
||
addition to the following non-exhaustive changes:
|
||
* Support for the debugger protocol, when using JupyterLab,
|
||
RetroLab or any frontend supporting the debugger protocol you
|
||
should have access to the debugger functionalities.
|
||
* The control channel on IPykernel 6.0 is run in a separate
|
||
thread, this max change the order in which messages are
|
||
processed, though this change was necessary to accommodate
|
||
the debugger.
|
||
* We now have a new dependency: matplotlib-inline, this helps
|
||
to separate the circular dependency between IPython/IPykernel
|
||
and matplotlib.
|
||
* All outputs to stdout/stderr should now be captured,
|
||
including subprocesses and output of compiled libraries
|
||
(blas, lapack....). In notebook server, some outputs that
|
||
would previously go to the notebooks logs will now
|
||
both head to notebook logs and in notebooks outputs. In
|
||
terminal frontend like Jupyter Console, Emacs or other, this
|
||
may ends up as duplicated outputs.
|
||
* coroutines are now native (async-def) , instead of using
|
||
tornado's @gen.coroutine
|
||
* OutStreams can now be configured to report istty() == True,
|
||
while this should make some output nicer (for example colored),
|
||
it is likely to break others. Use with care.
|
||
Deprecations in 6.0
|
||
* Kernels now support only a single shell stream, multiple
|
||
streams will now be ignored. The attribute
|
||
* Kernel.shell_streams (plural) is deprecated in ipykernel 6.0.
|
||
Use Kernel.shell_stream (singular)
|
||
* Kernel._parent_header is deprecated, even though it was
|
||
private. Use .get_parent() now.
|
||
Removal in 6.0
|
||
* ipykernel.codeutils was deprecated since 4.x series (2016) and
|
||
has been removed, please import similar functionalities from
|
||
ipyparallel
|
||
* remove find_connection_file and profile argument of
|
||
connect_qtconsole and get_connection_info, deprecated since
|
||
IPykernel 4.2.2 (2016).
|
||
|
||
-------------------------------------------------------------------
|
||
Fri Jun 25 12:08:31 UTC 2021 - Ben Greiner <code@bnavigator.de>
|
||
|
||
- Update to version 5.5.5
|
||
* Keep preferring SelectorEventLoop on Windows. #669
|
||
- Release 5.5.4
|
||
* Import configure_inline_support from matplotlib_inline if
|
||
available #654
|
||
- Release 5.5.3
|
||
* Revert Backport of #605: Fix Handling of shell.should_run_async
|
||
#622
|
||
- Release 5.5.2 and Release 5.5.1 were yanked from PyPI
|
||
- Release 5.5.0
|
||
* kernelspec: ensure path is writable before writing kernel.json.
|
||
#593
|
||
* Add configure_inline_support and call it in the shell. #590
|
||
* Fix stop_on_error_timeout to now properly abort
|
||
execute_request's that fall within the timeout after an error.
|
||
#572
|
||
|
||
-------------------------------------------------------------------
|
||
Sat Feb 13 23:21:18 UTC 2021 - Ben Greiner <code@bnavigator.de>
|
||
|
||
- Update to version 5.4.3
|
||
* Rework wait_for_ready logic.
|
||
- Don't test with python36-numpy because it is no more (NEP 29)
|
||
- Skip two completion tests due to newer jedi support in ipython
|
||
gh#ipython/ipykernel#578 gh#ipython/ipykernel#579
|
||
|
||
-------------------------------------------------------------------
|
||
Wed Feb 3 22:39:49 UTC 2021 - Benjamin Greiner <code@bnavigator.de>
|
||
|
||
- BuildRequire jupyter-jupyter_core-filesystem for the macro
|
||
|
||
-------------------------------------------------------------------
|
||
Mon Dec 14 22:47:01 UTC 2020 - Benjamin Greiner <code@bnavigator.de>
|
||
|
||
- update to version 5.4.2
|
||
* Revert "Fix stop_on_error_timeout blocking other messages in
|
||
queue"
|
||
- changes in 5.4.1
|
||
* Invalid syntax in ipykernel/log.py.
|
||
- changes in 5.4.0
|
||
5.4.0 is generally focused on code quality improvements and
|
||
tornado asyncio compatibility.
|
||
* Add github actions, bail on asyncio patch for tornado 6.1.
|
||
* Start testing on Python 3.9.
|
||
* Fix stack levels for ipykernel's deprecation warnings and stop
|
||
using some deprecated APIs.
|
||
* Add env parameter to kernel installation
|
||
* Fix stop_on_error_timeout blocking other messages in queue.
|
||
* Remove most of the python 2 compat code.
|
||
* Remove u-prefix from strings.
|
||
|
||
-------------------------------------------------------------------
|
||
Sat Jul 25 15:31:23 UTC 2020 - Arun Persaud <arun@gmx.de>
|
||
|
||
- update to version 5.3.4:
|
||
* Only run Qt eventloop in the shell stream. (:ghpull:`531`)
|
||
|
||
-------------------------------------------------------------------
|
||
Sat Jul 18 18:10:45 UTC 2020 - Arun Persaud <arun@gmx.de>
|
||
|
||
- update to version 5.3.3:
|
||
* Fix QSocketNotifier in the Qt event loop not being disabled for
|
||
the control channel. (:ghpull:`525`)
|
||
|
||
-------------------------------------------------------------------
|
||
Sat Jul 11 19:29:18 UTC 2020 - Arun Persaud <arun@gmx.de>
|
||
|
||
- update to version 5.3.2:
|
||
* Restore timer based event loop as a Windows-compatible
|
||
fallback. (:ghpull:`523`)
|
||
|
||
- changes from version 5.3.1:
|
||
* Fix #520: run post_execute and post_run_cell on async cells
|
||
(:ghpull:`521`)
|
||
* Fix exception causes in zmqshell.py (:ghpull:`516`)
|
||
* Make pdb on Windows interruptible (:ghpull:`490`)
|
||
|
||
-------------------------------------------------------------------
|
||
Sat May 30 23:53:01 UTC 2020 - Arun Persaud <arun@gmx.de>
|
||
|
||
- update to version 5.3.0:
|
||
* Fix ipython display imports (:ghpull:`509`)
|
||
* Skip test_unc_paths if OS is not Windows (:ghpull:`507`)
|
||
* Allow interrupting input() on Windows, as part of effort to make
|
||
pdb interruptible (:ghpull:`498`)
|
||
* Add Trio Loop (:ghpull:`479`)
|
||
* Flush from process even without newline (:ghpull:`478`)
|
||
|
||
-------------------------------------------------------------------
|
||
Sat Apr 18 21:29:00 UTC 2020 - Arun Persaud <arun@gmx.de>
|
||
|
||
- update to version 5.2.1:
|
||
* Handle system commands that use UNC paths on Windows
|
||
(:ghpull:`500`)
|
||
* Add offset argument to seek in io test (:ghpull:`496`)
|
||
|
||
-------------------------------------------------------------------
|
||
Sat Mar 28 16:35:30 UTC 2020 - Arun Persaud <arun@gmx.de>
|
||
|
||
- specfile:
|
||
* be more specific in %files section
|
||
* removed patch fix_jupyter_client_6.patch, included upstream
|
||
|
||
- update to version 5.2.0:
|
||
* Produce better traceback when kernel is interrupted
|
||
(:ghpull:`491`)
|
||
* Add InProcessKernelClient.control_channel for compatibility with
|
||
jupyter-client v6.0.0 (:ghpull:`489`)
|
||
* Drop support for Python 3.4 (:ghpull:`483`)
|
||
* Work around issue related to Tornado with python3.8 on Windows
|
||
(:ghpull:`480`, :ghpull:`481`)
|
||
* Prevent entering event loop if it is None (:ghpull:`464`)
|
||
* Use shell.input_transformer_manager when available (:ghpull:`411`)
|
||
|
||
-------------------------------------------------------------------
|
||
Wed Mar 11 13:31:10 UTC 2020 - Todd R <toddrme2178@gmail.com>
|
||
|
||
- Add fix_jupyter_client_6.patch
|
||
Fixes issue with jupyter-client > 6
|
||
From: https://github.com/ipython/ipykernel/pull/489
|
||
See: https://github.com/jupyter/jupyter_client/issues/523
|
||
|
||
-------------------------------------------------------------------
|
||
Tue Jan 28 15:46:11 UTC 2020 - Todd R <toddrme2178@gmail.com>
|
||
|
||
- Update to 5.1.4
|
||
* Fix pickle issues when using inline matplotlib backend
|
||
* Fix an error during kernel shutdown
|
||
* Fix compatibility issues with Python 3.8
|
||
* Remove some dead code
|
||
|
||
-------------------------------------------------------------------
|
||
Tue Nov 12 17:03:09 UTC 2019 - Todd R <toddrme2178@gmail.com>
|
||
|
||
- Update to 5.1.3
|
||
* Fix comm shutdown behavior by adding a ``deleting`` option to ``close`` which can be set to prevent registering new comm channels during shutdown
|
||
* Fix ``Heartbeat._bind_socket`` to return on the first bind
|
||
* Moved ``InProcessKernelClient.flush`` to ``DummySocket``
|
||
* Don't redirect stdout if nose machinery is not present
|
||
* Rename `_asyncio.py` to `_asyncio_utils.py` to avoid name conflicts on Python 3.6+
|
||
* Only generate kernelspec when installing or building wheel
|
||
* Fix priority ordering of control-channel messages in some cases
|
||
|
||
-------------------------------------------------------------------
|
||
Fri Aug 9 05:20:15 UTC 2019 - John Vandenberg <jayvdb@gmail.com>
|
||
|
||
- Replace HTML and PDF version of changelog with the single
|
||
changelog.rst they contained, obsoleting jupyter-ipykernel-doc
|
||
- Activated test suite
|
||
- Update to 5.1.2
|
||
* Fix socket-binding race conditions
|
||
* Add a no-op flush method to DummySocket and comply with stream API
|
||
* Update kernel version to indicate kernel v5.3 support
|
||
* Add testing for upcoming Python 3.8 and PEP 570 positional parameters
|
||
|
||
-------------------------------------------------------------------
|
||
Thu May 16 19:12:11 UTC 2019 - Todd R <toddrme2178@gmail.com>
|
||
|
||
- Update to 5.1.1
|
||
* 5.1.1 fixes a bug that caused cells to get stuck in a busy state.
|
||
|
||
-------------------------------------------------------------------
|
||
Thu Apr 25 01:59:57 UTC 2019 - Todd R <toddrme2178@gmail.com>
|
||
|
||
- Rename to to match python package naming guidelines.
|
||
- Split jupyter components into own subpackage.
|
||
|
||
-------------------------------------------------------------------
|
||
Thu Oct 11 16:33:41 UTC 2018 - Todd R <toddrme2178@gmail.com>
|
||
|
||
- Fix source URL
|
||
|
||
-------------------------------------------------------------------
|
||
Thu Oct 11 16:01:27 UTC 2018 - Todd R <toddrme2178@gmail.com>
|
||
|
||
- Update doc files
|
||
|
||
-------------------------------------------------------------------
|
||
Thu Oct 11 04:52:51 UTC 2018 - Arun Persaud <arun@gmx.de>
|
||
|
||
- update to version 5.1.0:
|
||
* Fix message-ordering bug that could result in out-of-order
|
||
executions, especially on Windows (:ghpull:`356`)
|
||
* Fix classifiers to indicate dropped Python 2 support
|
||
(:ghpull:`354`)
|
||
* Remove some dead code (:ghpull:`355`)
|
||
* Support rich-media responses in inspect_requests (tooltips)
|
||
(:ghpull:`361`)
|
||
|
||
-------------------------------------------------------------------
|
||
Thu Sep 27 20:44:12 UTC 2018 - Todd R <toddrme2178@gmail.com>
|
||
|
||
- Update to version 5.0.0
|
||
* Drop support for Python 2. ipykernel 5.0 requires Python >= 3.4
|
||
* Add support for IPython’s asynchronous code execution (PR #323)
|
||
* Update release process in CONTRIBUTING.md (PR #339)
|
||
- Drop python 2 build since they are no longer supported.
|
||
- Switch to wheels for more reliable installation.
|
||
|
||
-------------------------------------------------------------------
|
||
Fri Sep 7 15:19:52 UTC 2018 - toddrme2178@gmail.com
|
||
|
||
- Update to version 4.9.0
|
||
* Python 3.3 is no longer supported (:ghpull:`336`)
|
||
* Flush stdout/stderr in KernelApp before replacing (:ghpull:`314`)
|
||
* Allow preserving stdout and stderr in KernelApp (:ghpull:`315`)
|
||
* Override writable method on OutStream (:ghpull:`316`)
|
||
* Add metadata to help display matplotlib figures legibly (:ghpull:`336`)
|
||
|
||
-------------------------------------------------------------------
|
||
Mon Feb 26 01:07:14 UTC 2018 - toddrme2178@gmail.com
|
||
|
||
- Update to version 4.8.2
|
||
* Fix compatibility issue with qt eventloop and pyzmq 17 (:ghpull:`307`).
|
||
- Update to version 4.8.1
|
||
* set zmq.ROUTER_HANDOVER socket option when available
|
||
to workaround libzmq reconnect bug (:ghpull:`300`).
|
||
* Fix sdists including absolute paths for kernelspec files,
|
||
which prevented installation from sdist on Windows
|
||
(:ghpull:`306`).
|
||
|
||
-------------------------------------------------------------------
|
||
Thu Feb 15 14:59:24 UTC 2018 - toddrme2178@gmail.com
|
||
|
||
- Update to version 4.8.0
|
||
* set zmq.ROUTER_HANDOVER socket option when available
|
||
to workaround libzmq reconnect bug (:ghpull:`300`).
|
||
* Fix sdists including absolute paths for kernelspec files,
|
||
which prevented installation from sdist on Windows
|
||
(:ghpull:`306`).
|
||
|
||
-------------------------------------------------------------------
|
||
Thu Jan 18 06:50:10 UTC 2018 - toddrme2178@gmail.com
|
||
|
||
- update to version 4.8.9
|
||
* Cleanly shutdown integrated event loops when shutting down the
|
||
kernel. (:ghpull:`290`)
|
||
* %gui qt now uses Qt 5 by default rather than Qt 4, following a
|
||
similar change in terminal IPython. (:ghpull:`293`)
|
||
* Fix event loop integration for :mod:`asyncio` when run with
|
||
Tornado 5, which uses asyncio where available. (:ghpull:`296`)
|
||
|
||
-------------------------------------------------------------------
|
||
Thu Dec 21 18:45:08 UTC 2017 - arun@gmx.de
|
||
|
||
- update to version 4.7.0:
|
||
* Add event loop integration for :mod:`asyncio`.
|
||
* Use the new IPython completer API.
|
||
* Add support for displaying GIF images (mimetype image/gif).
|
||
* Allow the kernel to be interrupted without killing the Qt console.
|
||
* Fix is_complete response with cell magics.
|
||
* Clean up encoding of bytes objects.
|
||
* Clean up help links to use https and improve display titles.
|
||
* Clean up ioloop handling in preparation for tornado 5.
|
||
|
||
-------------------------------------------------------------------
|
||
Tue Sep 19 20:00:24 UTC 2017 - toddrme2178@gmail.com
|
||
|
||
- Update to 4.6.1
|
||
* Fix eventloop-integration bug preventing Qt windows/widgets
|
||
from displaying with ipykernel 4.6.0 and IPython ≥ 5.2.
|
||
* Avoid deprecation warnings about naive datetimes when working
|
||
with jupyter_client ≥ 5.0.
|
||
|
||
-------------------------------------------------------------------
|
||
Wed Apr 26 18:52:53 UTC 2017 - toddrme2178@gmail.com
|
||
|
||
- Implement single-spec version.
|
||
|
||
-------------------------------------------------------------------
|
||
Fri Apr 7 03:10:04 UTC 2017 - toddrme2178@gmail.com
|
||
|
||
- Update to 4.6.0
|
||
* Add to API `DisplayPublisher.publish` two new fully backward-compatible
|
||
keyword-args:
|
||
- `update: bool`
|
||
- `transient: dict`
|
||
* Support new `transient` key in `display_data` messages spec for `publish`.
|
||
For a display data message, `transient` contains data that shouldn't be
|
||
persisted to files or documents. Add a `display_id` to this `transient`
|
||
dict by `display(obj, display_id=...)`
|
||
* Add `ipykernel_launcher` module which removes the current working directory
|
||
from `sys.path` before launching the kernel. This helps to reduce the cases
|
||
where the kernel won't start because there's a `random.py` (or similar)
|
||
module in the current working directory.
|
||
* Add busy/idle messages on IOPub during processing of aborted requests
|
||
* Add active event loop setting to GUI, which enables the correct response
|
||
to IPython's `is_event_loop_running_xxx`
|
||
* Include IPython kernelspec in wheels to reduce reliance on "native kernel
|
||
spec" in jupyter_client
|
||
* Modify `OutStream` to inherit from `TextIOBase` instead of object to improve
|
||
API support and error reporting
|
||
* Fix IPython kernel death messages at start, such as "Kernel Restarting..."
|
||
and "Kernel appears to have died", when parent-poller handles PID 1
|
||
* Various bugfixes
|
||
- Install icons
|
||
|
||
-------------------------------------------------------------------
|
||
Thu Mar 30 19:23:26 UTC 2017 - toddrme2178@gmail.com
|
||
|
||
- Update to 4.6.0
|
||
* Add to API `DisplayPublisher.publish` two new fully backward-compatible
|
||
keyword-args:
|
||
- `update: bool`
|
||
- `transient: dict`
|
||
* Support new `transient` key in `display_data` messages spec for `publish`.
|
||
For a display data message, `transient` contains data that shouldn't be
|
||
persisted to files or documents. Add a `display_id` to this `transient`
|
||
dict by `display(obj, display_id=...)`
|
||
* Add `ipykernel_launcher` module which removes the current working directory
|
||
from `sys.path` before launching the kernel. This helps to reduce the cases
|
||
where the kernel won't start because there's a `random.py` (or similar)
|
||
module in the current working directory.
|
||
* Add busy/idle messages on IOPub during processing of aborted requests
|
||
* Add active event loop setting to GUI, which enables the correct response
|
||
to IPython's `is_event_loop_running_xxx`
|
||
* Include IPython kernelspec in wheels to reduce reliance on "native kernel
|
||
spec" in jupyter_client
|
||
* Modify `OutStream` to inherit from `TextIOBase` instead of object to improve
|
||
API support and error reporting
|
||
* Fix IPython kernel death messages at start, such as "Kernel Restarting..."
|
||
and "Kernel appears to have died", when parent-poller handles PID 1
|
||
* Various bugfixes
|
||
- Update to 4.5.2
|
||
* Fix bug when instantating Comms outside of the IPython kernel (introduced in 4.5.1).
|
||
- Update to 4.5.1
|
||
* Add missing ``stream`` parameter to overridden :func:`getpass`
|
||
* Remove locks from iopub thread, which could cause deadlocks during debugging
|
||
* Fix regression where KeyboardInterrupt was treated as an aborted request, rather than an error
|
||
* Allow instantating Comms outside of the IPython kernel
|
||
- Update to 4.5.0
|
||
* Use figure.dpi instead of savefig.dpi to set DPI for inline figures
|
||
* Support ipympl matplotlib backend (requires IPython update as well to fully work)
|
||
* Various bugfixes, including fixes for output coming from threads,
|
||
and :func:`input` when called with non-string prompts, which stdlib allows.
|
||
- Update to 4.4.1
|
||
* Fix circular import of matplotlib on Python 2 caused by the inline backend changes in 4.4.0.
|
||
- Update to 4.4.0
|
||
* Use `MPLBACKEND`_ environment variable to tell matplotlib >= 1.5 use use the inline backend by default.
|
||
This is only done if MPLBACKEND is not already set and no backend has been explicitly loaded,
|
||
so setting ``MPLBACKEND=Qt4Agg`` or calling ``%matplotlib notebook`` or ``matplotlib.use('Agg')``
|
||
will take precedence.
|
||
* Fixes for logging problems caused by 4.3,
|
||
where logging could go to the terminal instead of the notebook.
|
||
* Add ``--sys-prefix`` and ``--profile`` arguments to :command:`ipython kernel install`
|
||
* Allow Comm (Widget) messages to be sent from background threads.
|
||
* Select inline matplotlib backend by default if ``%matplotlib`` magic or
|
||
``matplotlib.use()`` are not called explicitly (for matplotlib >= 1.5).
|
||
* Fix some longstanding minor deviations from the message protocol
|
||
(missing status: ok in a few replies, connect_reply format).
|
||
* Remove calls to NoOpContext from IPython, deprecated in 5.0.
|
||
- Update to 4.3.2
|
||
* Use a nonempty dummy session key for inprocess kernels to avoid security
|
||
warnings.
|
||
* Fix Windows Python 3.5 incompatibility caused by faulthandler patch in 4.3
|
||
- Update to 4.3.0
|
||
* Publish all IO in a thread, via :class:`IOPubThread`.
|
||
This solves the problem of requiring :meth:`sys.stdout.flush` to be called in the notebook to produce output promptly during long-running cells.
|
||
* Remove refrences to outdated IPython guiref in kernel banner.
|
||
* Patch faulthandler to use ``sys.__stderr__`` instead of forwarded ``sys.stderr``,
|
||
which has no fileno when forwarded.
|
||
* Deprecate some vestiges of the Big Split:
|
||
* :func:`ipykernel.find_connection_file` is deprecated. Use :func:`jupyter_client.find_connection_file` instead.
|
||
* Various pieces of code specific to IPython parallel are deprecated in ipykernel
|
||
and moved to ipyparallel.
|
||
- Split documentation into own subpackage
|
||
|
||
-------------------------------------------------------------------
|
||
Wed Feb 17 13:35:39 UTC 2016 - toddrme2178@gmail.com
|
||
|
||
- Update to version 4.2.2
|
||
* Don't show interactive debugging info when kernel crashes
|
||
* Fix handling of numerical types in json_clean
|
||
* Testing fixes for output capturing
|
||
- update to version 4.2.1:
|
||
* Fix default display name back to "Python X" instead of "pythonX"
|
||
- update to version 4.2.0:
|
||
* Support sending a full message in initial opening of comms
|
||
(metadata, buffers were not previously allowed)
|
||
* When using "ipython kernel install --name" to install the IPython
|
||
kernelspec, default display-name to the same value as "--name".
|
||
- update to version 4.1.1:
|
||
* Fix missing "ipykernel.__version__" on Python 2.
|
||
* Fix missing "target_name" when opening comms from the frontend.
|
||
|
||
-------------------------------------------------------------------
|
||
Thu Oct 8 10:34:53 UTC 2015 - toddrme2178@gmail.com
|
||
|
||
- Update to 4.1.0
|
||
* add ipython kernel install entrypoint for installing the IPython kernelspec
|
||
* provisional implementation of comm_info request/reply for msgspec v5.1
|
||
|
||
-------------------------------------------------------------------
|
||
Tue Jul 21 15:14:54 UTC 2015 - toddrme2178@gmail.com
|
||
|
||
- Initial version
|
||
|