dev-python/joblib: Bump to 1.6.0

Signed-off-by: Michał Górny <mgorny@gentoo.org>
This commit is contained in:
Michał Górny
2026-08-31 20:53:37 +02:00
parent ac51705973
commit 6cd19c206f
2 changed files with 59 additions and 0 deletions

View File

@@ -1,2 +1,4 @@
DIST joblib-1.5.3.tar.gz 331603 BLAKE2B 391b86c45bd98e85b485edab100ffd7704d1a9389c0db3d1f557bcf0d9dc161e95d297a54ce6069c505ea927a4dd1936273edb839534d676b939a5376d380323 SHA512 221fe426aa4c90d75080b63bf6bb0b9c61e4ae90bd2a734d2b658013e9a00125bc14574d475789b4d8d246a1a5b5c6f67754e639080de6ecb9a481d1d124c0ed
DIST joblib-1.5.3.tar.gz.provenance 9259 BLAKE2B 77e44ecd74aaa05838a8df6814ac70cad6a0e8887ea1864fdd3e759341760c65a4593ad192131570b0cb4e263b15acd8b10f770e65a0a10341bada2f2a573cc7 SHA512 82403c2d35fcdb83e8c961e587afa61ebff36a3b9a3d216549283cb5bbdd788a93e5a0b0107e0c8dd5dce18f23e5af0d5354f1c0f828ca50692a9fbf40545264
DIST joblib-1.6.0.tar.gz 327903 BLAKE2B 238fbd005b683feca890ff026cafd038d0d5f1f8ffc2d12c1640e150c0044b9659ca15bd06e7343bc452c4da2ee5fdf17bca568523f7e938570e808be3cdbaf4 SHA512 9b5a92ed5403a586dea4b54d051cfd0f15af2e74acae6783301cf8c50762190b37e873b892c3514686d8f070d5b98048065f0b9ce37dcb521644915f952cee5f
DIST joblib-1.6.0.tar.gz.provenance 9684 BLAKE2B 384e701e54a083622d080a65c064d0b4fb534df2bbb5d1ccc677bce525babc39949907b2948923ad69ec7e76a6d8884fa9e6f58cbcd899eaf707a32e902aa983 SHA512 2dbaf1faa05d2b5c3c3384768b60fed42b399e8aeb69d93a9dc447483f6245f8d2ed78f1d1141447a99f3f13e6168ec7daeed31c5923a8dc5bb6e89a5a9759c2

View File

@@ -0,0 +1,57 @@
# Copyright 1999-2026 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{12..14} )
PYPI_VERIFY_REPO=https://github.com/joblib/joblib
DISTUTILS_USE_PEP517=setuptools
inherit distutils-r1 pypi
DESCRIPTION="Tools to provide lightweight pipelining in Python"
HOMEPAGE="
https://joblib.readthedocs.io/en/latest/
https://github.com/joblib/joblib/
https://pypi.org/project/joblib/
"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc ~ppc64 ~riscv ~x86 ~arm64-macos ~x64-macos"
RDEPEND="
dev-python/cloudpickle[${PYTHON_USEDEP}]
dev-python/loky[${PYTHON_USEDEP}]
"
# joblib is imported by setup.py so we need ${RDEPEND}
BDEPEND="
${RDEPEND}
test? (
dev-python/threadpoolctl[${PYTHON_USEDEP}]
)
"
EPYTEST_PLUGINS=( pytest-asyncio )
distutils_enable_tests pytest
EPYTEST_DESELECT=(
# https://github.com/joblib/joblib/issues/1362
joblib/test/test_memory.py::test_parallel_call_cached_function_defined_in_jupyter
# fails over warnings from numpy
joblib/test/test_numpy_pickle.py::test_joblib_pickle_across_python_versions
joblib/test/test_numpy_pickle.py::test_joblib_pickle_across_python_versions_with_mmap
)
python_prepare_all() {
# unbundle
rm -r joblib/externals || die
sed -e "/joblib.externals/d" -i pyproject.toml || die
find -name '*.py' -exec \
sed -e 's:\(joblib\)\?\.externals\.::' \
-e 's:from \.externals ::' \
-i {} + || die
distutils-r1_python_prepare_all
}