Compare commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
5ff2e8f3fd | ||
|
|
a8f927feaf | ||
|
|
88a98a64f0 | ||
|
|
d350a66b6c | ||
|
|
1da3258f31 | ||
|
|
b318b70569 | ||
|
|
ba8c034857 | ||
|
|
1304200fd8 | ||
|
|
3527d0a767 | ||
|
|
ef51dbe996 | ||
|
|
b8106ec856 | ||
|
|
3dd068b313 | ||
|
|
13b04dc01e | ||
|
|
1c670c7040 | ||
|
|
5cc633d991 | ||
|
|
06205cb314 | ||
|
|
0065445572 | ||
|
|
b58a306323 | ||
|
|
db4970851a | ||
|
|
22da03b0f1 | ||
|
|
b791c392d4 | ||
|
|
122378bdc0 | ||
|
|
2b0aa46383 | ||
|
|
96b4a4f400 | ||
|
|
1e1d857631 | ||
|
|
166b4c8d5d | ||
|
|
1a61cff732 | ||
|
|
52609a52cb | ||
|
|
5287bcde25 | ||
|
|
80f24a5d5c | ||
|
|
c0418e8752 | ||
|
|
007105faba | ||
|
|
c2719d6680 | ||
|
|
02723af547 | ||
|
|
cb7ef5c476 | ||
|
|
c1bf4a9e62 | ||
|
|
c72a899ad8 | ||
|
|
0e2b210feb | ||
|
|
680cb109e5 | ||
|
|
d3140f4c58 | ||
|
|
c05de8fbba | ||
|
|
33ce2adaea | ||
|
|
13d75e3e14 | ||
|
|
4e58d8eb6c | ||
|
|
e362e5f3d0 | ||
|
|
6a6b00e36a | ||
|
|
e223be063c | ||
|
|
5ee584c0d1 | ||
|
|
9432bbeb4e | ||
|
|
98d3d2ccb4 | ||
|
|
7d392569fb | ||
|
|
6be7e5c97d | ||
|
|
2be86be6d0 |
+10
@@ -1,3 +1,13 @@
|
|||||||
/numpydoc-0.4.tar.gz
|
/numpydoc-0.4.tar.gz
|
||||||
/numpydoc-0.5.tar.gz
|
/numpydoc-0.5.tar.gz
|
||||||
/numpydoc-0.7.0.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
|
||||||
|
/numpydoc-1.1.0.tar.gz
|
||||||
|
/numpydoc-1.4.0.tar.gz
|
||||||
|
/numpydoc-1.6.0.tar.gz
|
||||||
|
/numpydoc-1.7.0.tar.gz
|
||||||
|
/numpydoc-1.8.0.tar.gz
|
||||||
|
/numpydoc-1.9.0.tar.gz
|
||||||
|
|||||||
+165
-50
@@ -1,81 +1,196 @@
|
|||||||
|
# No matplot yet in EPEL10
|
||||||
|
%if 0%{?rhel} >= 10
|
||||||
|
%bcond_with matplotlib
|
||||||
|
%else
|
||||||
|
%bcond_without matplotlib
|
||||||
|
%endif
|
||||||
|
|
||||||
Name: python-numpydoc
|
Name: python-numpydoc
|
||||||
Version: 0.7.0
|
Version: 1.9.0
|
||||||
Release: 2%{?dist}
|
Release: 2%{?dist}
|
||||||
Summary: Sphinx extension to support docstrings in NumPy format
|
Summary: Sphinx extension to support docstrings in NumPy format
|
||||||
|
|
||||||
License: BSD
|
License: BSD-2-Clause
|
||||||
URL: https://pypi.python.org/pypi/numpydoc
|
URL: https://pypi.python.org/pypi/numpydoc
|
||||||
Source0: https://files.pythonhosted.org/packages/source/n/numpydoc/numpydoc-%{version}.tar.gz
|
Source: %pypi_source numpydoc
|
||||||
|
|
||||||
BuildArch: noarch
|
BuildArch: noarch
|
||||||
|
|
||||||
BuildRequires: python2-devel
|
|
||||||
BuildRequires: python2-setuptools
|
|
||||||
BuildRequires: python2-nose
|
|
||||||
BuildRequires: python2-sphinx
|
|
||||||
BuildRequires: python2-matplotlib
|
|
||||||
|
|
||||||
BuildRequires: python3-devel
|
BuildRequires: python3-devel
|
||||||
BuildRequires: python3-setuptools
|
|
||||||
BuildRequires: python3-nose
|
|
||||||
BuildRequires: python3-sphinx
|
|
||||||
BuildRequires: python3-matplotlib
|
|
||||||
|
|
||||||
%description
|
%global _description %{expand:
|
||||||
Numpydoc inserts a hook into Sphinx's autodoc that converts docstrings
|
This package provides the numpydoc Sphinx extension for handling docstrings
|
||||||
following the NumPy/SciPy format to a form palatable to Sphinx.
|
formatted according to the NumPy documentation format. The extension also adds
|
||||||
|
the code description directives np:function, np-c:function, etc.}
|
||||||
|
|
||||||
|
%description %{_description}
|
||||||
%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
|
%package -n python3-numpydoc
|
||||||
Summary: %{summary}
|
Summary: %{summary}
|
||||||
%{?python_provide:%python_provide python3-numpydoc}
|
|
||||||
Requires: python3-sphinx >= 1.2.3
|
%description -n python3-numpydoc %{_description}
|
||||||
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.
|
|
||||||
|
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
%autosetup -n numpydoc-%{version}
|
%autosetup -p1 -n numpydoc-%{version}
|
||||||
|
# let's not measure coverage:
|
||||||
|
sed -i '/pytest-cov/d' pyproject.toml
|
||||||
|
sed -Ei 's/\s+--cov\S+//g' pyproject.toml
|
||||||
|
%if %{without matplotlib}
|
||||||
|
sed -i '/matplotlib/d' pyproject.toml
|
||||||
|
%endif
|
||||||
|
|
||||||
|
# Remove a useless shebang
|
||||||
|
sed -i '\,#!/usr/bin/env python,d' numpydoc/validate.py
|
||||||
|
|
||||||
|
%generate_buildrequires
|
||||||
|
%pyproject_buildrequires -g test
|
||||||
|
|
||||||
%build
|
%build
|
||||||
%py2_build
|
%pyproject_wheel
|
||||||
%py3_build
|
|
||||||
|
|
||||||
%install
|
%install
|
||||||
%py2_install
|
%pyproject_install
|
||||||
%py3_install
|
%pyproject_save_files -l numpydoc
|
||||||
|
|
||||||
|
|
||||||
%check
|
%check
|
||||||
nosetests -v
|
# Deselected tests need to download an inventory from docs.python.org
|
||||||
nosetests-3 -v
|
%pytest -k "not test_MyClass and not test_my_function"
|
||||||
|
|
||||||
|
|
||||||
%files -n python2-numpydoc
|
%files -n python3-numpydoc -f %pyproject_files
|
||||||
%license LICENSE.txt
|
|
||||||
%doc README.rst
|
%doc README.rst
|
||||||
%{python2_sitelib}/numpydoc
|
%{_bindir}/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
|
|
||||||
|
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Sat Jan 17 2026 Fedora Release Engineering <releng@fedoraproject.org> - 1.9.0-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_44_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sat Nov 29 2025 Orion Poplawski <orion@nwra.com> - 1.9.0-1
|
||||||
|
- Update to 1.9.0
|
||||||
|
|
||||||
|
* Fri Sep 19 2025 Python Maint <python-maint@redhat.com> - 1.8.0-6
|
||||||
|
- Rebuilt for Python 3.14.0rc3 bytecode
|
||||||
|
|
||||||
|
* Fri Aug 15 2025 Python Maint <python-maint@redhat.com> - 1.8.0-5
|
||||||
|
- Rebuilt for Python 3.14.0rc2 bytecode
|
||||||
|
|
||||||
|
* Fri Jul 25 2025 Fedora Release Engineering <releng@fedoraproject.org> - 1.8.0-4
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild
|
||||||
|
|
||||||
|
* Tue Jun 03 2025 Python Maint <python-maint@redhat.com> - 1.8.0-3
|
||||||
|
- Rebuilt for Python 3.14
|
||||||
|
|
||||||
|
* Sat Jan 18 2025 Fedora Release Engineering <releng@fedoraproject.org> - 1.8.0-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Oct 24 2024 Orion Poplawski <orion@nwra.com> - 1.8.0-1
|
||||||
|
- Update to 1.8.0
|
||||||
|
|
||||||
|
* Fri Jul 19 2024 Fedora Release Engineering <releng@fedoraproject.org> - 1.7.0-3
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sat Jun 08 2024 Python Maint <python-maint@redhat.com> - 1.7.0-2
|
||||||
|
- Rebuilt for Python 3.13
|
||||||
|
|
||||||
|
* Fri Mar 29 2024 Orion Poplawski <orion@nwra.com> - 1.7.0-1
|
||||||
|
- Update to 1.7.0
|
||||||
|
|
||||||
|
* Fri Jan 26 2024 Fedora Release Engineering <releng@fedoraproject.org> - 1.6.0-4
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
||||||
|
|
||||||
|
* Mon Jan 22 2024 Fedora Release Engineering <releng@fedoraproject.org> - 1.6.0-3
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
||||||
|
|
||||||
|
* Mon Jan 01 2024 Benjamin A. Beasley <code@musicinmybrain.net> - 1.6.0-2
|
||||||
|
- Minor packaging improvements
|
||||||
|
|
||||||
|
* Thu Oct 19 2023 Jerry James <loganjerry@gmail.com> - 1.6.0-1
|
||||||
|
- Version 1.6.0
|
||||||
|
- Convert License tag to SPDX
|
||||||
|
- Use the pypi_source macro
|
||||||
|
|
||||||
|
* Fri Jul 21 2023 Fedora Release Engineering <releng@fedoraproject.org> - 1.4.0-4
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
|
||||||
|
|
||||||
|
* Tue Jun 27 2023 Python Maint <python-maint@redhat.com> - 1.4.0-3
|
||||||
|
- Rebuilt for Python 3.12
|
||||||
|
|
||||||
|
* Fri Jan 20 2023 Fedora Release Engineering <releng@fedoraproject.org> - 1.4.0-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
|
||||||
|
|
||||||
|
* 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
|
||||||
|
|
||||||
|
* 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
|
* Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.7.0-2
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
||||||
|
|
||||||
|
|||||||
@@ -1 +1 @@
|
|||||||
SHA512 (numpydoc-0.7.0.tar.gz) = 1a9bedaa6fe8bcd626b739b458a1647e550ac4489f8ccec2d4b11f93ee5c2a58e5d0e6692330d478a9ba91956da88eabdf020aa04f534e1e445c020903dcf14a
|
SHA512 (numpydoc-1.9.0.tar.gz) = bd9cb472e27772d3c52f44da28e9f7345b9b880a2e4b786d70d783de9dcd97188f5d2f6e7cc128317b15e8a582540d3f179952829112f3fbbbc57058f1102295
|
||||||
|
|||||||
Reference in New Issue
Block a user