Compare commits
8 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 5ff2e8f3fd | |||
| a8f927feaf | |||
| 88a98a64f0 | |||
| d350a66b6c | |||
| 1da3258f31 | |||
| b318b70569 | |||
| ba8c034857 | |||
| 1304200fd8 |
@@ -10,3 +10,4 @@
|
|||||||
/numpydoc-1.6.0.tar.gz
|
/numpydoc-1.6.0.tar.gz
|
||||||
/numpydoc-1.7.0.tar.gz
|
/numpydoc-1.7.0.tar.gz
|
||||||
/numpydoc-1.8.0.tar.gz
|
/numpydoc-1.8.0.tar.gz
|
||||||
|
/numpydoc-1.9.0.tar.gz
|
||||||
|
|||||||
@@ -1,25 +0,0 @@
|
|||||||
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():
|
|
||||||
+31
-6
@@ -1,5 +1,12 @@
|
|||||||
|
# No matplot yet in EPEL10
|
||||||
|
%if 0%{?rhel} >= 10
|
||||||
|
%bcond_with matplotlib
|
||||||
|
%else
|
||||||
|
%bcond_without matplotlib
|
||||||
|
%endif
|
||||||
|
|
||||||
Name: python-numpydoc
|
Name: python-numpydoc
|
||||||
Version: 1.8.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
|
||||||
|
|
||||||
@@ -7,9 +14,6 @@ License: BSD-2-Clause
|
|||||||
URL: https://pypi.python.org/pypi/numpydoc
|
URL: https://pypi.python.org/pypi/numpydoc
|
||||||
Source: %pypi_source numpydoc
|
Source: %pypi_source numpydoc
|
||||||
|
|
||||||
# Compatibility with sphinx 8
|
|
||||||
Patch: https://github.com/numpy/numpydoc/commit/1338660.patch
|
|
||||||
|
|
||||||
BuildArch: noarch
|
BuildArch: noarch
|
||||||
|
|
||||||
BuildRequires: python3-devel
|
BuildRequires: python3-devel
|
||||||
@@ -31,14 +35,17 @@ Summary: %{summary}
|
|||||||
%prep
|
%prep
|
||||||
%autosetup -p1 -n numpydoc-%{version}
|
%autosetup -p1 -n numpydoc-%{version}
|
||||||
# let's not measure coverage:
|
# let's not measure coverage:
|
||||||
sed -i '/pytest-cov/d' requirements/test.txt pyproject.toml
|
sed -i '/pytest-cov/d' pyproject.toml
|
||||||
sed -Ei 's/\s+--cov\S+//g' 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
|
# Remove a useless shebang
|
||||||
sed -i '\,#!/usr/bin/env python,d' numpydoc/validate.py
|
sed -i '\,#!/usr/bin/env python,d' numpydoc/validate.py
|
||||||
|
|
||||||
%generate_buildrequires
|
%generate_buildrequires
|
||||||
%pyproject_buildrequires -x test
|
%pyproject_buildrequires -g test
|
||||||
|
|
||||||
%build
|
%build
|
||||||
%pyproject_wheel
|
%pyproject_wheel
|
||||||
@@ -57,6 +64,24 @@ sed -i '\,#!/usr/bin/env python,d' numpydoc/validate.py
|
|||||||
%{_bindir}/numpydoc
|
%{_bindir}/numpydoc
|
||||||
|
|
||||||
%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
|
* Sat Jan 18 2025 Fedora Release Engineering <releng@fedoraproject.org> - 1.8.0-2
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild
|
||||||
|
|
||||||
|
|||||||
@@ -1 +1 @@
|
|||||||
SHA512 (numpydoc-1.8.0.tar.gz) = a2fe6fc72485b2cef2cb40c231c876209f135177dce034d1617a49712fb24197c224b103967914ff6e0509eb013e4b9647a9cb93794c63f41db63fd1fcc05441
|
SHA512 (numpydoc-1.9.0.tar.gz) = bd9cb472e27772d3c52f44da28e9f7345b9b880a2e4b786d70d783de9dcd97188f5d2f6e7cc128317b15e8a582540d3f179952829112f3fbbbc57058f1102295
|
||||||
|
|||||||
Reference in New Issue
Block a user