Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 3527d0a767 | |||
| ef51dbe996 | |||
| b8106ec856 |
@@ -9,3 +9,4 @@
|
||||
/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():
|
||||
+13
-3
@@ -1,11 +1,15 @@
|
||||
Name: python-numpydoc
|
||||
Version: 1.7.0
|
||||
Release: 3%{?dist}
|
||||
Version: 1.8.0
|
||||
Release: 2%{?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
|
||||
@@ -50,9 +54,15 @@ sed -i '\,#!/usr/bin/env python,d' numpydoc/validate.py
|
||||
|
||||
%files -n python3-numpydoc -f %pyproject_files
|
||||
%doc README.rst
|
||||
%{_bindir}/validate-docstrings
|
||||
%{_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
|
||||
|
||||
* Fri Jul 19 2024 Fedora Release Engineering <releng@fedoraproject.org> - 1.7.0-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild
|
||||
|
||||
|
||||
@@ -1 +1 @@
|
||||
SHA512 (numpydoc-1.7.0.tar.gz) = 719ab90d981a1c48e332c2bdd8c41074e679bc4170cb6e7f5111dd473ffc758c7d0c297e3a691ad5df0ed000525c5dcb771fc1c39015eb6da8a1343b8d9dc1cb
|
||||
SHA512 (numpydoc-1.8.0.tar.gz) = a2fe6fc72485b2cef2cb40c231c876209f135177dce034d1617a49712fb24197c224b103967914ff6e0509eb013e4b9647a9cb93794c63f41db63fd1fcc05441
|
||||
|
||||
Reference in New Issue
Block a user