dev-python/ipyparallel: Bump to 9.0.2

Signed-off-by: Michał Górny <mgorny@gentoo.org>
This commit is contained in:
Michał Górny
2025-10-10 07:10:29 +02:00
parent 01477948dd
commit bcc6688e1e
2 changed files with 83 additions and 0 deletions

View File

@@ -1 +1,2 @@
DIST ipyparallel-9.0.1.tar.gz 4407324 BLAKE2B 9302e0aa6ed790a687fd5d7f3842684d11e73868d9f2f299634d8813735e4d09f0faa873cca45c619f43e6413f269928be3af68bf9c733fd05853918b361e66a SHA512 6359f932a249197610016b3ccc5f86b6e0565e1e2070f5dde72c0e75877f0bc4e038a0cc5cea05c9a068d1e82e923d983470e6db465169527bcb9499cc550d52
DIST ipyparallel-9.0.2.tar.gz 4407304 BLAKE2B 4095b9eb9f61a3d3da311ddfa01a3c185d99d44d9cd51079e40422dfa6b1c6522d34f5df7254f3ba19622da8aeec5b3b16c86fb43ce94f9173a00bf4b53ca1fc SHA512 c7719a9313a3bdf40300a09888f056884cbcf77158fec1eef4cd242ce956e2b6fa1917b35c1997d0b375dc8e590212c6c23f533c1a20673c59eaf411fbded7bf

View File

@@ -0,0 +1,82 @@
# Copyright 1999-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..13} )
PYTHON_REQ_USE="threads(+)"
inherit distutils-r1 optfeature pypi
DESCRIPTION="Interactive Parallel Computing with IPython"
HOMEPAGE="
https://ipyparallel.readthedocs.io/
https://github.com/ipython/ipyparallel/
https://pypi.org/project/ipyparallel/
"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
RDEPEND="
dev-python/decorator[${PYTHON_USEDEP}]
>=dev-python/pyzmq-25[${PYTHON_USEDEP}]
>=dev-python/traitlets-5[${PYTHON_USEDEP}]
>=dev-python/ipython-5[${PYTHON_USEDEP}]
>=dev-python/jupyter-client-7[${PYTHON_USEDEP}]
dev-python/jupyter-server[${PYTHON_USEDEP}]
<dev-python/ipykernel-7[${PYTHON_USEDEP}]
>=dev-python/ipykernel-6.9.1[${PYTHON_USEDEP}]
dev-python/psutil[${PYTHON_USEDEP}]
>=dev-python/python-dateutil-2.1[${PYTHON_USEDEP}]
dev-python/tqdm[${PYTHON_USEDEP}]
>=dev-python/tornado-6.1[${PYTHON_USEDEP}]
"
BDEPEND="
dev-python/flit-core[${PYTHON_USEDEP}]
test? (
dev-python/testpath[${PYTHON_USEDEP}]
)
"
# TODO: package myst_parser
# distutils_enable_sphinx docs/source
EPYTEST_PLUGINS=( pytest-asyncio )
distutils_enable_tests pytest
PATCHES=(
# https://github.com/ipython/ipyparallel/pull/934
"${FILESDIR}/${PN}-9.0.1-pypy3_11.patch"
)
EPYTEST_DESELECT=(
# we don't run a mongo instance for tests
ipyparallel/tests/test_mongodb.py::TestMongoBackend
# TODO
ipyparallel/tests/test_util.py::test_disambiguate_ip
# Gets upset that a timeout _doesn't_ occur, presumably because
# we're cranking up too many test timeouts. Oh well.
# bug #823458#c3
ipyparallel/tests/test_asyncresult.py::AsyncResultTest::test_wait_for_send
# We could patch the timeout for these too but they're going to be inherently
# fragile anyway based on what they do.
ipyparallel/tests/test_client.py::TestClient::test_activate
ipyparallel/tests/test_client.py::TestClient::test_lazy_all_targets
ipyparallel/tests/test_client.py::TestClient::test_wait_for_engines
)
src_configure() {
export IPP_DISABLE_JS=1
}
python_install_all() {
distutils-r1_python_install_all
# move /usr/etc stuff to /etc
mv "${ED}/usr/etc" "${ED}/etc" || die
}
pkg_postinst() {
optfeature "Jupyter Notebook integration" dev-python/notebook
}