diff options
| author | Michał Górny <mgorny@gentoo.org> | 2025-07-19 08:28:00 +0200 |
|---|---|---|
| committer | Michał Górny <mgorny@gentoo.org> | 2025-07-19 08:39:08 +0200 |
| commit | 945f051c52b1ceed70f7611d50e37da1a209c0a9 (patch) | |
| tree | 1a426b5a401d8bd58916e8f60121057b35aac550 /dev-python | |
| parent | 3851512584c03a1a70b8e54f0110e0d957f37145 (diff) | |
| download | gentoo-945f051c52b1ceed70f7611d50e37da1a209c0a9.tar.gz gentoo-945f051c52b1ceed70f7611d50e37da1a209c0a9.tar.bz2 gentoo-945f051c52b1ceed70f7611d50e37da1a209c0a9.zip | |
dev-python/numpydoc: Add a quick patch for upstream regression
Add a quick patch for the regression causing `AttributeError`
in dev-python/scikit-learn.
Bug: https://github.com/numpy/numpydoc/issues/638
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'dev-python')
| -rw-r--r-- | dev-python/numpydoc/files/numpydoc-1.9.0-638.patch | 16 | ||||
| -rw-r--r-- | dev-python/numpydoc/numpydoc-1.9.0-r1.ebuild (renamed from dev-python/numpydoc/numpydoc-1.9.0.ebuild) | 5 |
2 files changed, 21 insertions, 0 deletions
diff --git a/dev-python/numpydoc/files/numpydoc-1.9.0-638.patch b/dev-python/numpydoc/files/numpydoc-1.9.0-638.patch new file mode 100644 index 000000000000..62747199aaf9 --- /dev/null +++ b/dev-python/numpydoc/files/numpydoc-1.9.0-638.patch @@ -0,0 +1,16 @@ +diff --git a/numpydoc/validate.py b/numpydoc/validate.py +index d0debfa..6d7b369 100644 +--- a/numpydoc/validate.py ++++ b/numpydoc/validate.py +@@ -640,9 +640,9 @@ def validate(obj_name, validator_cls=None, **validator_kwargs): + # Check if the object is a class and has a docstring in the constructor + # Also check if code_obj is defined, as undefined for the AstValidator in validate_docstrings.py. + if ( +- doc.name.endswith(".__init__") +- and doc.is_function_or_method ++ doc.is_function_or_method + and hasattr(doc, "code_obj") ++ and doc.name.endswith(".__init__") + ): + cls_name = doc.code_obj.__qualname__.split(".")[0] + cls = Validator._load_obj(f"{doc.code_obj.__module__}.{cls_name}") diff --git a/dev-python/numpydoc/numpydoc-1.9.0.ebuild b/dev-python/numpydoc/numpydoc-1.9.0-r1.ebuild index 75621e26059a..7614fbee6b53 100644 --- a/dev-python/numpydoc/numpydoc-1.9.0.ebuild +++ b/dev-python/numpydoc/numpydoc-1.9.0-r1.ebuild @@ -34,6 +34,11 @@ BDEPEND=" ) " +PATCHES=( + # https://github.com/numpy/numpydoc/issues/638 + "${FILESDIR}/${P}-638.patch" +) + EPYTEST_PLUGINS=() distutils_enable_tests pytest |
