From: "Michał Górny" <mgorny@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/scikit-image/, dev-python/scikit-image/files/
Date: Wed, 14 Aug 2024 07:36:15 +0000 (UTC) [thread overview]
Message-ID: <1723620973.2efdb7eea7ffc763b1280cc156025fb809e23a0d.mgorny@gentoo> (raw)
commit: 2efdb7eea7ffc763b1280cc156025fb809e23a0d
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Wed Aug 14 07:24:11 2024 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Wed Aug 14 07:36:13 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2efdb7ee
dev-python/scikit-image: Enable py3.13
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
.../files/scikit-image-0.24.0-py313.patch | 82 ++++++++++++++++++++++
dev-python/scikit-image/scikit-image-0.24.0.ebuild | 8 ++-
2 files changed, 89 insertions(+), 1 deletion(-)
diff --git a/dev-python/scikit-image/files/scikit-image-0.24.0-py313.patch b/dev-python/scikit-image/files/scikit-image-0.24.0-py313.patch
new file mode 100644
index 000000000000..664a2388c08e
--- /dev/null
+++ b/dev-python/scikit-image/files/scikit-image-0.24.0-py313.patch
@@ -0,0 +1,82 @@
+From ee41933e3ea15769cea32a514cdaeecbe84b70b9 Mon Sep 17 00:00:00 2001
+From: =?UTF-8?q?Edgar=20Andr=C3=A9s=20Margffoy=20Tuay?= <andfoy@gmail.com>
+Date: Wed, 31 Jul 2024 11:43:59 -0500
+Subject: [PATCH] Add CI to test scikit-image against free-threaded Python 3.13
+ (#7463)
+MIME-Version: 1.0
+Content-Type: text/plain; charset=UTF-8
+Content-Transfer-Encoding: 8bit
+
+enables testing scikit-image against free-threaded Python,
+this is part of the ongoing effort to test projects against the
+changes proposed in PEP703
+
+---------
+
+Co-authored-by: Stefan van der Walt <sjvdwalt@gmail.com>
+Co-authored-by: Lars Grüter <lagru+github@mailbox.org>
+---
+ .github/workflows/tests.yml | 26 ++++++++++++++++++++++++++
+ TODO.txt | 2 ++
+ meson.build | 2 +-
+ skimage/measure/_regionprops.py | 9 ++++++---
+ skimage/meson.build | 10 +++++++++-
+ skimage/transform/_geometric.py | 2 +-
+ skimage/util/_map_array.py | 2 +-
+ tools/github/before_install.sh | 6 ++++++
+ 8 files changed, 52 insertions(+), 7 deletions(-)
+
+diff --git a/skimage/measure/_regionprops.py b/skimage/measure/_regionprops.py
+index 9f34d6a1c..82a03b394 100644
+--- a/skimage/measure/_regionprops.py
++++ b/skimage/measure/_regionprops.py
+@@ -1,4 +1,5 @@
+ import inspect
++import sys
+ from functools import wraps
+ from math import atan2
+ from math import pi as PI
+@@ -1406,9 +1407,11 @@ def _parse_docs():
+ import textwrap
+
+ doc = regionprops.__doc__ or ''
+- matches = re.finditer(
+- r'\*\*(\w+)\*\* \:.*?\n(.*?)(?=\n [\*\S]+)', doc, flags=re.DOTALL
+- )
++ arg_regex = r'\*\*(\w+)\*\* \:.*?\n(.*?)(?=\n [\*\S]+)'
++ if sys.version_info >= (3, 13):
++ arg_regex = r'\*\*(\w+)\*\* \:.*?\n(.*?)(?=\n[\*\S]+)'
++
++ matches = re.finditer(arg_regex, doc, flags=re.DOTALL)
+ prop_doc = {m.group(1): textwrap.dedent(m.group(2)) for m in matches}
+
+ return prop_doc
+diff --git a/skimage/transform/_geometric.py b/skimage/transform/_geometric.py
+index 6f696e95b..56cedae63 100644
+--- a/skimage/transform/_geometric.py
++++ b/skimage/transform/_geometric.py
+@@ -687,7 +687,7 @@ class ProjectiveTransform(_GeometricTransform):
+
+ return dst[:, :ndim]
+
+- def __array__(self, dtype=None):
++ def __array__(self, dtype=None, copy=None):
+ if dtype is None:
+ return self.params
+ else:
+diff --git a/skimage/util/_map_array.py b/skimage/util/_map_array.py
+index 1f852fdb6..125dfb211 100644
+--- a/skimage/util/_map_array.py
++++ b/skimage/util/_map_array.py
+@@ -129,7 +129,7 @@ class ArrayMap:
+ """Return one more than the maximum label value being remapped."""
+ return np.max(self.in_values) + 1
+
+- def __array__(self, dtype=None):
++ def __array__(self, dtype=None, copy=None):
+ """Return an array that behaves like the arraymap when indexed.
+
+ This array can be very large: it is the size of the largest value
+--
+2.45.2
+
diff --git a/dev-python/scikit-image/scikit-image-0.24.0.ebuild b/dev-python/scikit-image/scikit-image-0.24.0.ebuild
index 2ec63290c17b..5bffa476e8a6 100644
--- a/dev-python/scikit-image/scikit-image-0.24.0.ebuild
+++ b/dev-python/scikit-image/scikit-image-0.24.0.ebuild
@@ -5,7 +5,7 @@ EAPI=8
DISTUTILS_USE_PEP517=meson-python
DISTUTILS_EXT=1
-PYTHON_COMPAT=( python3_{10..12} )
+PYTHON_COMPAT=( python3_{10..13} )
inherit distutils-r1 optfeature pypi
@@ -51,6 +51,12 @@ distutils_enable_tests pytest
# There is a programmable error in your configuration file:
#distutils_enable_sphinx doc/source dev-python/numpydoc dev-python/myst-parser
+PATCHES=(
+ # https://github.com/scikit-image/scikit-image/pull/7463
+ # stripped down to minimal 3.13 support
+ "${FILESDIR}/${P}-py313.patch"
+)
+
src_test() {
# for some reason, upstream refetches data that's already in the tarball
# sigh
next reply other threads:[~2024-08-14 7:36 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-08-14 7:36 Michał Górny [this message]
-- strict thread matches above, loose matches on Subject: below --
2024-04-21 2:35 [gentoo-commits] repo/gentoo:master commit in: dev-python/scikit-image/, dev-python/scikit-image/files/ Michał Górny
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=1723620973.2efdb7eea7ffc763b1280cc156025fb809e23a0d.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