Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| c72a899ad8 | |||
| 0e2b210feb | |||
| 680cb109e5 | |||
| d3140f4c58 | |||
| c05de8fbba |
@@ -0,0 +1,23 @@
|
||||
From 2e4dd944d375cf771e95aef4fb34305ac6431632 Mon Sep 17 00:00:00 2001
|
||||
From: Eric Larson <larson.eric.d@gmail.com>
|
||||
Date: Thu, 7 May 2020 17:34:55 -0400
|
||||
Subject: [PATCH] FIX: Get doc of actual class
|
||||
|
||||
---
|
||||
numpydoc/tests/test_docscrape.py | 3 +--
|
||||
1 file changed, 1 insertion(+), 2 deletions(-)
|
||||
|
||||
diff --git a/numpydoc/tests/test_docscrape.py b/numpydoc/tests/test_docscrape.py
|
||||
index 94ad22a..1780ec4 100644
|
||||
--- a/numpydoc/tests/test_docscrape.py
|
||||
+++ b/numpydoc/tests/test_docscrape.py
|
||||
@@ -828,8 +828,7 @@ class Dummy(object):
|
||||
"""
|
||||
pass
|
||||
|
||||
- obj = Dummy()
|
||||
- s = str(FunctionDoc(obj, role='func'))
|
||||
+ s = str(FunctionDoc(Dummy, role='func'))
|
||||
assert(':func:`func_a`, :func:`func_b`' in s)
|
||||
assert(' some relationship' in s)
|
||||
assert(':func:`func_d`' in s)
|
||||
+17
-3
@@ -1,11 +1,13 @@
|
||||
Name: python-numpydoc
|
||||
Version: 0.9.2
|
||||
Release: 1%{?dist}
|
||||
Release: 5%{?dist}
|
||||
Summary: Sphinx extension to support docstrings in NumPy format
|
||||
|
||||
License: BSD
|
||||
URL: https://pypi.python.org/pypi/numpydoc
|
||||
Source0: https://files.pythonhosted.org/packages/source/n/numpydoc/numpydoc-%{version}.tar.gz
|
||||
# Upstream patch for python 3.9 compatibility
|
||||
Patch0: https://github.com/numpy/numpydoc/pull/262.patch
|
||||
BuildArch: noarch
|
||||
|
||||
BuildRequires: python3-devel
|
||||
@@ -31,7 +33,7 @@ following the NumPy/SciPy format to a form palatable to Sphinx.
|
||||
|
||||
|
||||
%prep
|
||||
%autosetup -n numpydoc-%{version}
|
||||
%autosetup -p1 -n numpydoc-%{version}
|
||||
|
||||
%build
|
||||
%py3_build
|
||||
@@ -48,10 +50,22 @@ nosetests-3 -v
|
||||
%license LICENSE.txt
|
||||
%doc README.rst
|
||||
%{python3_sitelib}/numpydoc
|
||||
%{python3_sitelib}/numpydoc-%{version}-py?.?.egg-info
|
||||
%{python3_sitelib}/numpydoc-%{version}-py%{python3_version}.egg-info
|
||||
|
||||
|
||||
%changelog
|
||||
* Wed Jul 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0.9.2-5
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
||||
|
||||
* Mon May 25 2020 Miro Hrončok <mhroncok@redhat.com> - 0.9.2-4
|
||||
- Rebuilt for Python 3.9
|
||||
|
||||
* Fri May 08 2020 Orion Poplawski <orion@nwra.com> - 0.9.2-3
|
||||
- Add upstream patch for python 3.9 compatibility
|
||||
|
||||
* Thu Jan 30 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0.9.2-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
||||
|
||||
* Sat Dec 28 2019 Orion Poplawski <orion@nwra.com> - 0.9.2-1
|
||||
- Update to 0.9.2
|
||||
|
||||
|
||||
Reference in New Issue
Block a user