Compare commits

...

22 Commits

Author SHA1 Message Date
Orion Poplawski 2158278e3f Do not BR matplotlib on epel10 2024-11-11 09:56:45 -07:00
Orion Poplawski b8106ec856 Update to 1.8.0 2024-10-23 22:01:02 -06:00
Fedora Release Engineering 3dd068b313 Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild 2024-07-19 13:34:46 +00:00
Python Maint 13b04dc01e Rebuilt for Python 3.13 2024-06-08 20:58:43 +02:00
Orion Poplawski 1c670c7040 Update to 1.7.0 2024-03-28 21:10:37 -06:00
Fedora Release Engineering 5cc633d991 Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild 2024-01-26 07:24:13 +00:00
Fedora Release Engineering 06205cb314 Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild 2024-01-22 04:04:44 +00:00
Benjamin A. Beasley 0065445572 Simplify the changelog message 2024-01-03 11:56:07 -05:00
Benjamin A. Beasley b58a306323 Assert a license file is automatically handled; don’t package a duplicate 2024-01-01 10:42:42 -05:00
Benjamin A. Beasley db4970851a Use the upstream description text (and don’t write it twice) 2024-01-01 10:41:12 -05:00
Benjamin A. Beasley 22da03b0f1 Drop the unnecessary explicit BR on pyproject-rpm-macros 2024-01-01 10:38:48 -05:00
Benjamin A. Beasley b791c392d4 Don’t number the sole Source 2024-01-01 10:38:13 -05:00
Benjamin A. Beasley 122378bdc0 Drop obsolete %python_provide macro 2024-01-01 10:37:33 -05:00
Jerry James 2b0aa46383 Version 1.6.0
Other changes:
- Convert License tag to SPDX
- Use the %pypi_source macro
2023-10-19 21:43:59 -06:00
Fedora Release Engineering 96b4a4f400 Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
Signed-off-by: Fedora Release Engineering <releng@fedoraproject.org>
2023-07-21 11:50:17 +00:00
Tomáš Hrnčiar 1e1d857631 Replace ast.NameConstant deprecated in Python 3.12 with ast.Constant 2023-06-28 13:38:27 +02:00
Python Maint 166b4c8d5d Rebuilt for Python 3.12 2023-06-27 16:52:00 +02:00
Fedora Release Engineering 1a61cff732 Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
Signed-off-by: Fedora Release Engineering <releng@fedoraproject.org>
2023-01-20 15:10:08 +00:00
Lumir Balhar 52609a52cb Update to 1.4.0 2022-08-15 09:56:49 +02:00
Fedora Release Engineering 5287bcde25 Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
Signed-off-by: Fedora Release Engineering <releng@fedoraproject.org>
2022-07-22 20:26:30 +00:00
Python Maint 80f24a5d5c Rebuilt for Python 3.11 2022-06-15 13:25:30 +02:00
Fedora Release Engineering c0418e8752 - Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
Signed-off-by: Fedora Release Engineering <releng@fedoraproject.org>
2022-01-21 13:49:13 +00:00
4 changed files with 83 additions and 33 deletions
+4
View File
@@ -6,3 +6,7 @@
/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
-13
View File
@@ -1,13 +0,0 @@
diff --git a/setup.cfg b/setup.cfg
index 420fc78..1e9d2d6 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -1,7 +1,7 @@
[tool:pytest]
addopts =
--showlocals --doctest-modules -ra --cov-report= --cov=numpydoc
- --junit-xml=junit-results.xml --ignore=doc/conf.py
+ --junit-xml=junit-results.xml --ignore=doc/
junit_family = xunit2
filterwarnings =
ignore:'U' mode is deprecated:DeprecationWarning
+78 -19
View File
@@ -1,46 +1,57 @@
# No matplot yet in EPEL10
%if 0%{?rhel} >= 10
%bcond_with matplotlib
%else
%bcond_without matplotlib
%endif
Name: python-numpydoc
Version: 1.1.0
Release: 5%{?dist}
Version: 1.8.0
Release: 1%{?dist}
Summary: Sphinx extension to support docstrings in NumPy format
License: BSD
License: BSD-2-Clause
URL: https://pypi.python.org/pypi/numpydoc
Source0: https://files.pythonhosted.org/packages/source/n/numpydoc/numpydoc-%{version}.tar.gz
# Upstream patch to ignore doc/ directory during tests
Patch0: https://github.com/numpy/numpydoc/pull/296.patch
Source: %pypi_source numpydoc
BuildArch: noarch
BuildRequires: python3-devel
BuildRequires: pyproject-rpm-macros
%description
Numpydoc inserts a hook into Sphinx's autodoc that converts docstrings
following the NumPy/SciPy format to a form palatable to Sphinx.
%global _description %{expand:
This package provides the numpydoc Sphinx extension for handling docstrings
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 python3-numpydoc
Summary: %{summary}
%{?python_provide:%python_provide python3-numpydoc}
%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.
%description -n python3-numpydoc %{_description}
%prep
%autosetup -p1 -n numpydoc-%{version}
# let's not measure coverage:
sed -i '/pytest-cov/d' test_requirements.txt
sed -Ei 's/\s+--cov\S+//g' setup.cfg
sed -i '/pytest-cov/d' requirements/test.txt pyproject.toml
sed -Ei 's/\s+--cov\S+//g' pyproject.toml
%if %{without matplotlib}
sed -i '/matplotlib/d' requirements/test.txt pyproject.toml
%endif
# Remove a useless shebang
sed -i '\,#!/usr/bin/env python,d' numpydoc/validate.py
%generate_buildrequires
%pyproject_buildrequires -x testing
%pyproject_buildrequires -x test
%build
%pyproject_wheel
%install
%pyproject_install
%pyproject_save_files numpydoc
%pyproject_save_files -l numpydoc
%check
# Deselected tests need to download an inventory from docs.python.org
@@ -48,10 +59,58 @@ sed -Ei 's/\s+--cov\S+//g' setup.cfg
%files -n python3-numpydoc -f %pyproject_files
%license LICENSE.txt
%doc README.rst
%{_bindir}/numpydoc
%changelog
* 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
+1 -1
View File
@@ -1 +1 @@
SHA512 (numpydoc-1.1.0.tar.gz) = 10dfc5e40ca851401be7d7cca3cbf24bf8ded8573c01344976321cd65fe351d985ee0bf48a92a485a43f8fb191c246e4822545a1583c87c1214d819a5fdfc106
SHA512 (numpydoc-1.8.0.tar.gz) = a2fe6fc72485b2cef2cb40c231c876209f135177dce034d1617a49712fb24197c224b103967914ff6e0509eb013e4b9647a9cb93794c63f41db63fd1fcc05441