Compare commits
8 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| c72a899ad8 | |||
| 0e2b210feb | |||
| 680cb109e5 | |||
| d3140f4c58 | |||
| c05de8fbba | |||
| 33ce2adaea | |||
| 13d75e3e14 | |||
| 4e58d8eb6c |
@@ -4,3 +4,4 @@
|
||||
/python-numpydoc-0.8.0-1.fc27.src.rpm
|
||||
/numpydoc-0.8.0.tar.gz
|
||||
/numpydoc-0.9.1.tar.gz
|
||||
/numpydoc-0.9.2.tar.gz
|
||||
|
||||
@@ -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)
|
||||
+27
-4
@@ -1,11 +1,13 @@
|
||||
Name: python-numpydoc
|
||||
Version: 0.9.1
|
||||
Release: 2%{?dist}
|
||||
Version: 0.9.2
|
||||
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,31 @@ 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
|
||||
|
||||
* Thu Oct 03 2019 Miro Hrončok <mhroncok@redhat.com> - 0.9.1-4
|
||||
- Rebuilt for Python 3.8.0rc1 (#1748018)
|
||||
|
||||
* Mon Aug 19 2019 Miro Hrončok <mhroncok@redhat.com> - 0.9.1-3
|
||||
- Rebuilt for Python 3.8
|
||||
|
||||
* Fri Jul 26 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0.9.1-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
||||
|
||||
|
||||
@@ -1 +1 @@
|
||||
SHA512 (numpydoc-0.9.1.tar.gz) = 85a47ed86823baa3125dde4bb2760ce56f6fed9bb29dc64187dee4101f6344b5065146209f603d50a84a5d9cf0b7f4e5134fc0b495219e68100e05e028b61f2a
|
||||
SHA512 (numpydoc-0.9.2.tar.gz) = db8f5c3b409ece0a40f1c2ccb06eaa182896d173a5c913c7e6c5780fd021d746c48557fee6f050db8c42cfa41a5021901342bbb93dfd8b8daf7d43fead9cf94a
|
||||
|
||||
Reference in New Issue
Block a user