Compare commits
24 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| d350a66b6c | |||
| 1da3258f31 | |||
| b318b70569 | |||
| ba8c034857 | |||
| 1304200fd8 | |||
| 3527d0a767 | |||
| ef51dbe996 | |||
| b8106ec856 | |||
| 3dd068b313 | |||
| 13b04dc01e | |||
| 1c670c7040 | |||
| 5cc633d991 | |||
| 06205cb314 | |||
| 0065445572 | |||
| b58a306323 | |||
| db4970851a | |||
| 22da03b0f1 | |||
| b791c392d4 | |||
| 122378bdc0 | |||
| 2b0aa46383 | |||
| 96b4a4f400 | |||
| 1e1d857631 | |||
| 166b4c8d5d | |||
| 1a61cff732 |
@@ -7,3 +7,6 @@
|
||||
/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
|
||||
|
||||
@@ -0,0 +1,25 @@
|
||||
From 1338660931330bfd881c2c5792ac7ac1ee3dab96 Mon Sep 17 00:00:00 2001
|
||||
From: Ross Barnowski <rossbar@caltech.edu>
|
||||
Date: Thu, 17 Oct 2024 07:21:24 -0700
|
||||
Subject: [PATCH] MAINT: Add _exception_on_warning to MockApp (#586)
|
||||
|
||||
MockApp in test suite is now breaking due to the absence
|
||||
of a private _exception_on_warning attribute.
|
||||
|
||||
Fix by explicitly adding to the MockApp.
|
||||
---
|
||||
numpydoc/tests/test_numpydoc.py | 1 +
|
||||
1 file changed, 1 insertion(+)
|
||||
|
||||
diff --git a/numpydoc/tests/test_numpydoc.py b/numpydoc/tests/test_numpydoc.py
|
||||
index f46e2565..997cb0a5 100644
|
||||
--- a/numpydoc/tests/test_numpydoc.py
|
||||
+++ b/numpydoc/tests/test_numpydoc.py
|
||||
@@ -49,6 +49,7 @@ def __init__(self):
|
||||
self.verbosity = 2
|
||||
self._warncount = 0
|
||||
self.warningiserror = False
|
||||
+ self._exception_on_warning = False
|
||||
|
||||
|
||||
def test_mangle_docstrings_basic():
|
||||
@@ -0,0 +1,24 @@
|
||||
From ef7204ccf6d2fbf5b465d30d74dd2245ff3e2f6b Mon Sep 17 00:00:00 2001
|
||||
From: Karolina Surma <ksurma@redhat.com>
|
||||
Date: Thu, 27 Mar 2025 11:56:04 +0100
|
||||
Subject: [PATCH] Add compatibility with sphinx 8.2+
|
||||
|
||||
---
|
||||
numpydoc/tests/test_numpydoc.py | 1 +
|
||||
1 file changed, 1 insertion(+)
|
||||
|
||||
diff --git a/numpydoc/tests/test_numpydoc.py b/numpydoc/tests/test_numpydoc.py
|
||||
index 1bd71ed..ecb92e2 100644
|
||||
--- a/numpydoc/tests/test_numpydoc.py
|
||||
+++ b/numpydoc/tests/test_numpydoc.py
|
||||
@@ -36,6 +36,7 @@ class MockConfig:
|
||||
|
||||
class MockBuilder:
|
||||
config = MockConfig()
|
||||
+ _translator = None
|
||||
|
||||
|
||||
class MockApp:
|
||||
--
|
||||
2.48.1
|
||||
|
||||
+77
-17
@@ -1,44 +1,54 @@
|
||||
Name: python-numpydoc
|
||||
Version: 1.4.0
|
||||
Release: 1%{?dist}
|
||||
Version: 1.8.0
|
||||
Release: 6%{?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
|
||||
Source: %pypi_source numpydoc
|
||||
|
||||
# Compatibility with sphinx 8
|
||||
Patch: https://github.com/numpy/numpydoc/commit/1338660.patch
|
||||
# Upstream's already fixed it, but the fix is mixed with other changes that
|
||||
# don't apply cleanly: https://github.com/numpy/numpydoc/pull/611
|
||||
Patch: Add-compatibility-with-sphinx-8.patch
|
||||
|
||||
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' requirements/test.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
|
||||
|
||||
# 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
|
||||
@@ -46,10 +56,60 @@ 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
|
||||
* 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
|
||||
|
||||
@@ -1 +1 @@
|
||||
SHA512 (numpydoc-1.4.0.tar.gz) = a2ef773e2e4bce015139650fc8cd71026fccc27a80bb4ff2af79328d17cfc7ec5387216e4e7dcbc6ce7a3ee8a1aff835f5310e146c2e6b34c6eeb2db4af3991b
|
||||
SHA512 (numpydoc-1.8.0.tar.gz) = a2fe6fc72485b2cef2cb40c231c876209f135177dce034d1617a49712fb24197c224b103967914ff6e0509eb013e4b9647a9cb93794c63f41db63fd1fcc05441
|
||||
|
||||
Reference in New Issue
Block a user