From: "Michał Górny" <mgorny@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/joblib/
Date: Thu, 29 Jun 2023 05:12:19 +0000 (UTC) [thread overview]
Message-ID: <1688015528.494c077984d443466455726a45f6b9d1b4d38426.mgorny@gentoo> (raw)
commit: 494c077984d443466455726a45f6b9d1b4d38426
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Thu Jun 29 04:19:51 2023 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Thu Jun 29 05:12:08 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=494c0779
dev-python/joblib: Bump to 1.3.0
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
dev-python/joblib/Manifest | 1 +
dev-python/joblib/joblib-1.2.0.ebuild | 1 -
.../{joblib-1.2.0.ebuild => joblib-1.3.0.ebuild} | 30 ++++++++++++++--------
3 files changed, 21 insertions(+), 11 deletions(-)
diff --git a/dev-python/joblib/Manifest b/dev-python/joblib/Manifest
index 8873889b7f93..39974800136e 100644
--- a/dev-python/joblib/Manifest
+++ b/dev-python/joblib/Manifest
@@ -1 +1,2 @@
DIST joblib-1.2.0.gh.tar.gz 345345 BLAKE2B e18be536054829057ff320eda320a7548434108b3fc6c92a03df73dc68e093d039c656c1d674ea26fb6419bdfc39d26cfc28236a6bfbf0dcbf3ace7e52b0c829 SHA512 de882f2ff8dd936b4f98352b9ee1cc56c3a734f215a74257cf90a25736afd9e6b93e6538929b7a29f5956e6fccbdfcbf8b39c8fd68035a8857721f7a76066133
+DIST joblib-1.3.0.gh.tar.gz 357076 BLAKE2B d14c71deba922fe9e9caabb35f60aeeac505e2b3fde1b87b12f998086aac91ef337af360320f5f5ac8e2e3c05a6b77d46e0b2f794932f8ecbcca2ecd907028b3 SHA512 3264f3fdf66095302c37c32cb43221c686c62646a01dbc14233c588d36e9dd13132e8b4cb0b48d2add6cdf5bb86e7c2e6dac6664a9bd22de2035ded28f61a06c
diff --git a/dev-python/joblib/joblib-1.2.0.ebuild b/dev-python/joblib/joblib-1.2.0.ebuild
index e97c038a7f9a..13027f0f851c 100644
--- a/dev-python/joblib/joblib-1.2.0.ebuild
+++ b/dev-python/joblib/joblib-1.2.0.ebuild
@@ -39,7 +39,6 @@ python_prepare_all() {
-e 's:from \.externals ::' \
-i {} + || die
- # https://github.com/joblib/joblib/issues/1115
sed -e 's:test_parallel_call_cached_function_defined_in_jupyter:_&:' \
-i joblib/test/test_memory.py || die
diff --git a/dev-python/joblib/joblib-1.2.0.ebuild b/dev-python/joblib/joblib-1.3.0.ebuild
similarity index 58%
copy from dev-python/joblib/joblib-1.2.0.ebuild
copy to dev-python/joblib/joblib-1.3.0.ebuild
index e97c038a7f9a..acfab4db2d7a 100644
--- a/dev-python/joblib/joblib-1.2.0.ebuild
+++ b/dev-python/joblib/joblib-1.3.0.ebuild
@@ -3,18 +3,25 @@
EAPI=8
-PYTHON_COMPAT=( python3_{9..11} )
+PYTHON_COMPAT=( python3_{10..11} )
DISTUTILS_USE_PEP517=setuptools
+
inherit distutils-r1
DESCRIPTION="Tools to provide lightweight pipelining in Python"
-HOMEPAGE="https://joblib.readthedocs.io/en/latest/
- https://github.com/joblib/joblib"
-SRC_URI="https://github.com/${PN}/${PN}/archive/${PV}.tar.gz -> ${P}.gh.tar.gz"
+HOMEPAGE="
+ https://joblib.readthedocs.io/en/latest/
+ https://github.com/joblib/joblib/
+ https://pypi.org/project/joblib/
+"
+SRC_URI="
+ https://github.com/joblib/joblib/archive/${PV}.tar.gz
+ -> ${P}.gh.tar.gz
+"
LICENSE="BSD"
SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 ~ppc ppc64 ~riscv x86"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~x86"
RDEPEND="
dev-python/cloudpickle[${PYTHON_USEDEP}]
@@ -30,18 +37,21 @@ BDEPEND="
distutils_enable_tests pytest
+EPYTEST_DESELECT=(
+ # https://github.com/joblib/joblib/issues/1115
+ joblib/test/test_memory.py::test_parallel_call_cached_function_defined_in_jupyter
+ # unexpectedly pickleable?
+ joblib/test/test_hashing.py::test_hashing_pickling_error
+)
+
python_prepare_all() {
# unbundle
rm -r joblib/externals || die
- sed -e "s:'joblib.externals[^']*',\?::g" -i setup.py || 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
- # https://github.com/joblib/joblib/issues/1115
- sed -e 's:test_parallel_call_cached_function_defined_in_jupyter:_&:' \
- -i joblib/test/test_memory.py || die
-
distutils-r1_python_prepare_all
}
next reply other threads:[~2023-06-29 5:12 UTC|newest]
Thread overview: 66+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-06-29 5:12 Michał Górny [this message]
-- strict thread matches above, loose matches on Subject: below --
2025-06-07 11:30 [gentoo-commits] repo/gentoo:master commit in: dev-python/joblib/ Michał Górny
2025-06-07 10:57 Arthur Zamarin
2025-05-23 16:04 Michał Górny
2025-05-04 3:07 Michał Górny
2024-07-11 19:23 Michał Górny
2024-07-11 19:23 Michał Górny
2024-05-17 9:49 Michał Górny
2024-05-17 8:46 Arthur Zamarin
2024-05-03 3:42 Michał Górny
2024-04-24 18:13 Arthur Zamarin
2024-04-09 6:01 Michał Górny
2023-11-24 16:36 Arthur Zamarin
2023-09-17 11:26 Michał Górny
2023-08-10 2:53 Michał Górny
2023-08-02 18:52 Michał Górny
2023-08-02 16:54 Sam James
2023-06-30 2:46 Michał Górny
2023-06-11 16:15 Michał Górny
2023-06-11 13:53 Sam James
2023-05-11 14:43 Andrew Ammerlaan
2022-06-27 9:29 Michał Górny
2022-06-27 7:34 Agostino Sarubbo
2022-05-26 10:45 Andrew Ammerlaan
2021-11-13 10:30 Michał Górny
2021-11-13 10:06 Jakov Smolić
2021-10-07 21:48 Michał Górny
2021-09-02 22:57 Marek Szuba
2021-08-05 21:44 Michał Górny
2021-03-15 8:52 Michał Górny
2021-03-15 2:28 Sam James
2021-02-25 12:00 Sam James
2021-02-09 18:48 Michał Górny
2021-02-01 17:23 Michał Górny
2021-02-01 15:07 Agostino Sarubbo
2020-12-20 21:32 Sam James
2020-12-14 23:20 Michał Górny
2020-11-19 0:43 Michał Górny
2020-11-18 23:42 Thomas Deutschmann
2020-11-18 6:53 Agostino Sarubbo
2020-10-11 0:49 Louis Sautier
2020-08-18 5:52 Sam James
2020-07-29 10:20 Michał Górny
2020-07-02 8:29 Michał Górny
2020-06-15 7:47 Michał Górny
2020-06-14 18:55 Michał Górny
2020-06-14 13:45 Michał Górny
2020-06-01 6:41 Georgy Yakovlev
2020-05-11 17:33 Michał Górny
2020-05-04 14:38 Agostino Sarubbo
2020-04-01 21:04 Patrick McLean
2020-02-05 15:29 Michał Górny
2018-09-12 9:25 Louis Sautier
2018-08-21 8:31 Patrice Clement
2018-03-18 19:19 Michał Górny
2017-05-12 12:13 Manuel Rüger
2017-05-02 17:43 Michał Górny
2017-03-07 0:17 Sebastien Fabbro
2017-02-22 16:08 Agostino Sarubbo
2017-02-22 15:06 Agostino Sarubbo
2016-07-21 13:12 Patrick Lauer
2016-03-09 17:51 Sebastien Fabbro
2016-01-27 9:26 Justin Lecher
2015-11-03 10:24 Justin Lecher
2015-10-19 16:29 Justin Lecher
2015-08-28 7:24 Tim Harder
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1688015528.494c077984d443466455726a45f6b9d1b4d38426.mgorny@gentoo \
--to=mgorny@gentoo.org \
--cc=gentoo-commits@lists.gentoo.org \
--cc=gentoo-dev@lists.gentoo.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox