Compare commits
1 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 2158278e3f |
@@ -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():
|
||||
+11
-8
@@ -1,15 +1,18 @@
|
||||
# No matplot yet in EPEL10
|
||||
%if 0%{?rhel} >= 10
|
||||
%bcond_with matplotlib
|
||||
%else
|
||||
%bcond_without matplotlib
|
||||
%endif
|
||||
|
||||
Name: python-numpydoc
|
||||
Version: 1.8.0
|
||||
Release: 2%{?dist}
|
||||
Release: 1%{?dist}
|
||||
Summary: Sphinx extension to support docstrings in NumPy format
|
||||
|
||||
License: BSD-2-Clause
|
||||
URL: https://pypi.python.org/pypi/numpydoc
|
||||
Source: %pypi_source numpydoc
|
||||
|
||||
# Compatibility with sphinx 8
|
||||
Patch: https://github.com/numpy/numpydoc/commit/1338660.patch
|
||||
|
||||
BuildArch: noarch
|
||||
|
||||
BuildRequires: python3-devel
|
||||
@@ -33,6 +36,9 @@ Summary: %{summary}
|
||||
# let's not measure coverage:
|
||||
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
|
||||
@@ -57,9 +63,6 @@ sed -i '\,#!/usr/bin/env python,d' numpydoc/validate.py
|
||||
%{_bindir}/numpydoc
|
||||
|
||||
%changelog
|
||||
* 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
|
||||
|
||||
|
||||
Reference in New Issue
Block a user