Compare commits

...

4 Commits

Author SHA1 Message Date
Fedora Release Engineering c72a899ad8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
Signed-off-by: Fedora Release Engineering <releng@fedoraproject.org>
2020-07-29 02:28:36 +00:00
Miro Hrončok 0e2b210feb Replace Python version glob with macro (needed for Python 3.10+)
See https://lists.fedoraproject.org/archives/list/devel@lists.fedoraproject.org/thread/PQIGCQCRNBYNXBX2ICWEM3PLDLNOG2ZT/

Co-authored-by: Tomas Hrnciar <thrnciar@redhat.com>
2020-07-13 21:04:35 +02:00
Miro Hrončok 680cb109e5 Rebuilt for Python 3.9 2020-05-26 01:13:43 +02:00
Orion Poplawski d3140f4c58 Add upstream patch for python 3.9 compatibility 2020-05-07 19:25:24 -06:00
2 changed files with 37 additions and 3 deletions
+23
View File
@@ -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)
+14 -3
View File
@@ -1,11 +1,13 @@
Name: python-numpydoc
Version: 0.9.2
Release: 2%{?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,19 @@ 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