dev-python/nbclient: Bump to 0.10.3

Signed-off-by: Michał Górny <mgorny@gentoo.org>
This commit is contained in:
Michał Górny 2025-12-20 08:22:33 +01:00
parent fd422053b4
commit 6c70e5545c
No known key found for this signature in database
GPG Key ID: 8E32347AF4055AE8
2 changed files with 48 additions and 0 deletions

View File

@ -1 +1,2 @@
DIST nbclient-0.10.2.tar.gz 62424 BLAKE2B f0efae4b3eed70f04f3d0cc830ef4cc47ed98b93785c6048103b62aff9537eaeebc0ad54a513c142c3d76c64d093c9bac3003608c6510b719d9b5de7b67ad463 SHA512 e19e58950822711af8588fdb7a24c1df028c77c2e128023494335973ff28f524478637c491b16329c38edb2ff7714632d4216e6483bb9aa79e2b393e3de72be8 DIST nbclient-0.10.2.tar.gz 62424 BLAKE2B f0efae4b3eed70f04f3d0cc830ef4cc47ed98b93785c6048103b62aff9537eaeebc0ad54a513c142c3d76c64d093c9bac3003608c6510b719d9b5de7b67ad463 SHA512 e19e58950822711af8588fdb7a24c1df028c77c2e128023494335973ff28f524478637c491b16329c38edb2ff7714632d4216e6483bb9aa79e2b393e3de72be8
DIST nbclient-0.10.3.tar.gz 62564 BLAKE2B ebcbbbe09e1b2ee18423d2010627bb551e99762c5847341e44df8a1a41977d7cbf3652046dfe3e44ad8569a5d36befe041030001a3d37b6440eff17f223f7e68 SHA512 ae618a81baec30d9bb239b4fcc3e79c873e1163700ab15b646b552951c4f3156a986f5d7f041d7def56116115d24eb2be413028f2c7b076113d70abf4efb3ebc

View File

@ -0,0 +1,47 @@
# Copyright 2020-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DISTUTILS_USE_PEP517=hatchling
PYTHON_COMPAT=( pypy3_11 python3_{11..14} )
inherit distutils-r1 pypi
DESCRIPTION="A client library for executing Jupyter notebooks"
HOMEPAGE="
https://nbclient.readthedocs.io/en/latest/
https://github.com/jupyter/nbclient/
https://pypi.org/project/nbclient/
"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
RDEPEND="
>=dev-python/jupyter-client-6.1.12[${PYTHON_USEDEP}]
>=dev-python/jupyter-core-5.1.0[${PYTHON_USEDEP}]
>=dev-python/nbformat-5.1.3[${PYTHON_USEDEP}]
>=dev-python/traitlets-5.4[${PYTHON_USEDEP}]
"
BDEPEND="
test? (
dev-python/ipython[${PYTHON_USEDEP}]
>=dev-python/ipykernel-6.19.3[${PYTHON_USEDEP}]
dev-python/ipywidgets[${PYTHON_USEDEP}]
>=dev-python/nbconvert-7.1.0[${PYTHON_USEDEP}]
dev-python/testpath[${PYTHON_USEDEP}]
dev-python/xmltodict[${PYTHON_USEDEP}]
)
"
EPYTEST_PLUGINS=( flaky pytest-asyncio )
EPYTEST_RERUNS=3
EPYTEST_XDIST=1
distutils_enable_tests pytest
EPYTEST_DESELECT=(
# hangs?
'tests/test_client.py::test_run_all_notebooks[Interrupt.ipynb-opts6]'
)