forked from pool/python-jupyter-client
Benjamin Greiner
014bf327df
- Update to 7.4.8 * Make sure loop is marked with nest_asyncio #893 (@impact27) - Release 7.4.7 * Fix connection reconciliation to handle restarts #882 (@kevin-bates) - Release 7.4.6 * Reconcile connection information #879 (@kevin-bates) - Release 7.4.5 * [7.x] Handle Jupyter Core Warning #875 (@blink1073) - Release 7.4.4 * Workaround for launch bug #861 (@blink1073) - Release 7.4.3 * Defer creation of ready future #858 (@blink1073) - Release 7.4.2 * Fix ready promise and session send #852 (@blink1073) * Fix pending kernels backported and reverted: #848 #851 - Release 7.3.5 * add AsyncKernelClient to doc/api/client.rst #819 (@helioz11) * Use tornado 6.2's PeriodicCallback in restarter #822 (@vidartf) * Make _stdin_hook_default async #814 (@davidbrochart) - Replace py3109-compat.patch by py310-ignore-deprecation.patch gh#jupyter/jupyter_client#713 OBS-URL: https://build.opensuse.org/request/show/1043000 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:jupyter/python-jupyter-client?expand=0&rev=31
15 lines
604 B
Diff
15 lines
604 B
Diff
Index: jupyter_client-7.4.8/pyproject.toml
|
|
===================================================================
|
|
--- jupyter_client-7.4.8.orig/pyproject.toml
|
|
+++ jupyter_client-7.4.8/pyproject.toml
|
|
@@ -136,6 +136,9 @@ filterwarnings= [
|
|
# when there is a running event loop.
|
|
"ignore:There is no current event loop:DeprecationWarning:zmq",
|
|
|
|
+ # https://github.com/jupyter/jupyter_client/issues/713
|
|
+ "ignore:There is no current event loop:DeprecationWarning",
|
|
+
|
|
# Workaround for jupyter_core warning.
|
|
"module:Jupyter is migrating its paths to use standard platformdirs:DeprecationWarning",
|
|
]
|