Compare commits
9 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 52609a52cb | |||
| 5287bcde25 | |||
| 80f24a5d5c | |||
| c0418e8752 | |||
| 007105faba | |||
| c2719d6680 | |||
| 02723af547 | |||
| cb7ef5c476 | |||
| c1bf4a9e62 |
@@ -5,3 +5,5 @@
|
||||
/numpydoc-0.8.0.tar.gz
|
||||
/numpydoc-0.9.1.tar.gz
|
||||
/numpydoc-0.9.2.tar.gz
|
||||
/numpydoc-1.1.0.tar.gz
|
||||
/numpydoc-1.4.0.tar.gz
|
||||
|
||||
@@ -1,23 +0,0 @@
|
||||
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)
|
||||
+43
-19
@@ -1,21 +1,15 @@
|
||||
Name: python-numpydoc
|
||||
Version: 0.9.2
|
||||
Release: 5%{?dist}
|
||||
Version: 1.4.0
|
||||
Release: 1%{?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
|
||||
BuildRequires: python3-setuptools
|
||||
BuildRequires: python3-nose
|
||||
BuildRequires: python3-pytest
|
||||
BuildRequires: python3-sphinx
|
||||
BuildRequires: python3-matplotlib
|
||||
BuildRequires: pyproject-rpm-macros
|
||||
|
||||
%description
|
||||
Numpydoc inserts a hook into Sphinx's autodoc that converts docstrings
|
||||
@@ -25,8 +19,6 @@ 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.6.5
|
||||
Requires: python3-jinja2 >= 2.3
|
||||
%description -n python3-numpydoc
|
||||
Numpydoc inserts a hook into Sphinx's autodoc that converts docstrings
|
||||
following the NumPy/SciPy format to a form palatable to Sphinx.
|
||||
@@ -34,26 +26,58 @@ following the NumPy/SciPy format to a form palatable to Sphinx.
|
||||
|
||||
%prep
|
||||
%autosetup -p1 -n numpydoc-%{version}
|
||||
# let's not measure coverage:
|
||||
sed -i '/pytest-cov/d' requirements/test.txt
|
||||
sed -Ei 's/\s+--cov\S+//g' setup.cfg
|
||||
|
||||
%generate_buildrequires
|
||||
%pyproject_buildrequires -x testing
|
||||
|
||||
%build
|
||||
%py3_build
|
||||
%pyproject_wheel
|
||||
|
||||
%install
|
||||
%py3_install
|
||||
|
||||
%pyproject_install
|
||||
%pyproject_save_files numpydoc
|
||||
|
||||
%check
|
||||
nosetests-3 -v
|
||||
# Deselected tests need to download an inventory from docs.python.org
|
||||
%pytest -k "not test_MyClass and not test_my_function"
|
||||
|
||||
|
||||
%files -n python3-numpydoc
|
||||
%files -n python3-numpydoc -f %pyproject_files
|
||||
%license LICENSE.txt
|
||||
%doc README.rst
|
||||
%{python3_sitelib}/numpydoc
|
||||
%{python3_sitelib}/numpydoc-%{version}-py%{python3_version}.egg-info
|
||||
|
||||
|
||||
%changelog
|
||||
* Mon Aug 15 2022 Lumír Balhar <lbalhar@redhat.com> - 1.4.0-1
|
||||
- Update to 1.4.0
|
||||
Resolves: rhbz#2043324 rhbz#2113637
|
||||
|
||||
* Fri Jul 22 2022 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.0-8
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
|
||||
|
||||
* Wed Jun 15 2022 Python Maint <python-maint@redhat.com> - 1.1.0-7
|
||||
- Rebuilt for Python 3.11
|
||||
|
||||
* Fri Jan 21 2022 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.0-6
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
|
||||
|
||||
* Fri Jul 23 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.0-5
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
|
||||
|
||||
* Fri Jun 04 2021 Python Maint <python-maint@redhat.com> - 1.1.0-4
|
||||
- Rebuilt for Python 3.10
|
||||
|
||||
* Wed Jan 27 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.0-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
||||
|
||||
* Fri Nov 13 2020 Miro Hrončok <mhroncok@redhat.com> - 1.1.0-2
|
||||
- Don't BR pytest-cov
|
||||
|
||||
* Wed Sep 09 2020 Lumír Balhar <lbalhar@redhat.com> - 1.1.0-1
|
||||
- Update to 1.1.0 (#1701764)
|
||||
|
||||
* Wed Jul 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0.9.2-5
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
||||
|
||||
|
||||
@@ -1 +1 @@
|
||||
SHA512 (numpydoc-0.9.2.tar.gz) = db8f5c3b409ece0a40f1c2ccb06eaa182896d173a5c913c7e6c5780fd021d746c48557fee6f050db8c42cfa41a5021901342bbb93dfd8b8daf7d43fead9cf94a
|
||||
SHA512 (numpydoc-1.4.0.tar.gz) = a2ef773e2e4bce015139650fc8cd71026fccc27a80bb4ff2af79328d17cfc7ec5387216e4e7dcbc6ce7a3ee8a1aff835f5310e146c2e6b34c6eeb2db4af3991b
|
||||
|
||||
Reference in New Issue
Block a user