Compare commits

...

17 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
Fedora Release Engineering c05de8fbba - Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
Signed-off-by: Fedora Release Engineering <releng@fedoraproject.org>
2020-01-30 13:43:55 +00:00
Orion Poplawski 33ce2adaea Update to 0.9.2 2019-12-27 19:34:37 -07:00
Miro Hrončok 13d75e3e14 Rebuilt for Python 3.8.0rc1 (#1748018) 2019-10-03 14:20:50 +02:00
Miro Hrončok 4e58d8eb6c Rebuilt for Python 3.8 2019-08-19 10:47:44 +02:00
Fedora Release Engineering e362e5f3d0 - Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
Signed-off-by: Fedora Release Engineering <releng@fedoraproject.org>
2019-07-26 14:52:19 +00:00
Orion Poplawski 6a6b00e36a Add BR on pytest 2019-05-07 21:20:17 -06:00
Orion Poplawski e223be063c Update to 0.9.1 2019-05-07 21:12:18 -06:00
Miro Hrončok 5ee584c0d1 Subpackage python2-numpydoc has been removed 2019-03-06 15:48:25 +01:00
Fedora Release Engineering 9432bbeb4e - Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
Signed-off-by: Fedora Release Engineering <releng@fedoraproject.org>
2019-02-02 08:03:27 +00:00
Fedora Release Engineering 98d3d2ccb4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
Signed-off-by: Fedora Release Engineering <releng@fedoraproject.org>
2018-07-14 01:10:59 +00:00
Miro Hrončok 7d392569fb Rebuilt for Python 3.7 2018-06-19 11:11:02 +02:00
Thomas Spura 6be7e5c97d Correct sources 2018-05-30 09:55:08 +02:00
Thomas Spura 2be86be6d0 update to 0.8.0 (#1562463) 2018-05-29 20:03:22 +02:00
4 changed files with 79 additions and 31 deletions
+4
View File
@@ -1,3 +1,7 @@
/numpydoc-0.4.tar.gz
/numpydoc-0.5.tar.gz
/numpydoc-0.7.0.tar.gz
/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
+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)
+51 -30
View File
@@ -1,22 +1,19 @@
Name: python-numpydoc
Version: 0.7.0
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: python2-devel
BuildRequires: python2-setuptools
BuildRequires: python2-nose
BuildRequires: python2-sphinx
BuildRequires: python2-matplotlib
BuildRequires: python3-devel
BuildRequires: python3-setuptools
BuildRequires: python3-nose
BuildRequires: python3-pytest
BuildRequires: python3-sphinx
BuildRequires: python3-matplotlib
@@ -25,20 +22,10 @@ Numpydoc inserts a hook into Sphinx's autodoc that converts docstrings
following the NumPy/SciPy format to a form palatable to Sphinx.
%package -n python2-numpydoc
Summary: %{summary}
%{?python_provide:%python_provide python2-numpydoc}
Requires: python2-sphinx >= 1.2.3
Requires: python2-jinja2 >= 2.3
%description -n python2-numpydoc
Numpydoc inserts a hook into Sphinx's autodoc that converts docstrings
following the NumPy/SciPy format to a form palatable to Sphinx.
%package -n python3-numpydoc
Summary: %{summary}
%{?python_provide:%python_provide python3-numpydoc}
Requires: python3-sphinx >= 1.2.3
Requires: python3-sphinx >= 1.6.5
Requires: python3-jinja2 >= 2.3
%description -n python3-numpydoc
Numpydoc inserts a hook into Sphinx's autodoc that converts docstrings
@@ -46,36 +33,70 @@ following the NumPy/SciPy format to a form palatable to Sphinx.
%prep
%autosetup -n numpydoc-%{version}
%autosetup -p1 -n numpydoc-%{version}
%build
%py2_build
%py3_build
%install
%py2_install
%py3_install
%check
nosetests -v
nosetests-3 -v
%files -n python2-numpydoc
%license LICENSE.txt
%doc README.rst
%{python2_sitelib}/numpydoc
%{python2_sitelib}/numpydoc-%{version}-py?.?.egg-info
%files -n python3-numpydoc
%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
* Tue May 7 2019 Orion Poplawski <orion@nwra.com> - 0.9.1-1
- Update to 0.9.1
* Wed Mar 06 2019 Miro Hrončok <mhroncok@redhat.com> - 0.8.0-5
- Subpackage python2-numpydoc has been removed
See https://fedoraproject.org/wiki/Changes/Sphinx2
* Sat Feb 02 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0.8.0-4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
* Sat Jul 14 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.8.0-3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
* Tue Jun 19 2018 Miro Hrončok <mhroncok@redhat.com> - 0.8.0-2
- Rebuilt for Python 3.7
* Tue May 29 2018 Thomas Spura <tomspur@fedoraproject.org> - 0.8.0-1
- update to 0.8.0 (#1562463)
* Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.7.0-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
+1 -1
View File
@@ -1 +1 @@
SHA512 (numpydoc-0.7.0.tar.gz) = 1a9bedaa6fe8bcd626b739b458a1647e550ac4489f8ccec2d4b11f93ee5c2a58e5d0e6692330d478a9ba91956da88eabdf020aa04f534e1e445c020903dcf14a
SHA512 (numpydoc-0.9.2.tar.gz) = db8f5c3b409ece0a40f1c2ccb06eaa182896d173a5c913c7e6c5780fd021d746c48557fee6f050db8c42cfa41a5021901342bbb93dfd8b8daf7d43fead9cf94a