1
0

- Update to 6.27.0

* Extend argument handling of do_execute with cell metadata #1169
    (@jjvraw)
- Release 6.26.0
  * Maintenance and upkeep improvements

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:jupyter/python-ipykernel?expand=0&rev=93
This commit is contained in:
Benjamin Greiner 2023-11-26 15:29:43 +00:00 committed by Git OBS Bridge
parent 7d8b9fd615
commit 8b7f5b5302
4 changed files with 16 additions and 7 deletions

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:f468ddd1f17acb48c8ce67fcfa49ba6d46d4f9ac0438c1f441be7c3d1372230b
size 156247

3
ipykernel-6.27.0.tar.gz Normal file
View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:7f4986f606581be73bfb32dc7a1ac9fa0e804c9be50ddf1c7a119413e982693f
size 157721

View File

@ -1,3 +1,12 @@
-------------------------------------------------------------------
Sun Nov 26 15:27:03 UTC 2023 - Ben Greiner <code@bnavigator.de>
- Update to 6.27.0
* Extend argument handling of do_execute with cell metadata #1169
(@jjvraw)
- Release 6.26.0
* Maintenance and upkeep improvements
-------------------------------------------------------------------
Sat Sep 23 16:44:53 UTC 2023 - Ben Greiner <code@bnavigator.de>

View File

@ -18,7 +18,7 @@
%{?sle15_python_module_pythons}
Name: python-ipykernel
Version: 6.25.2
Version: 6.27.0
Release: 0
Summary: IPython Kernel for Jupyter
License: BSD-3-Clause
@ -89,7 +89,7 @@ This package provides the IPython kernel for Jupyter.
%prep
%autosetup -p1 -n ipykernel-%{version}
sed -i -e 's/--color=yes//' pyproject.toml
sed -i -e 's/, "--color=yes"//' pyproject.toml
%build
%pyproject_wheel
@ -112,11 +112,11 @@ $python -m ipykernel install \
%check
# fails in obs setups
ignoretests="--ignore ipykernel/tests/test_debugger.py"
ignoretests="--ignore tests/test_debugger.py"
# flaky obs timeouts
donttest="test_init_ipc_socket"
# we don't want ipyparallel and its dependencies in Ring1
ignoretests="$ignoretests --ignore ipykernel/tests/test_pickleutil.py"
ignoretests="$ignoretests --ignore tests/test_pickleutil.py"
donttest="$donttest or test_do_apply"
%pytest -k "not ($donttest)" $ignoretests