Compare commits

..

14 Commits

Author SHA1 Message Date
Fedora Release Engineering 5ff2e8f3fd Rebuilt for https://fedoraproject.org/wiki/Fedora_44_Mass_Rebuild 2026-01-17 08:33:04 +00:00
Orion Poplawski a8f927feaf Update to 1.9.0 2025-11-29 14:10:09 -07:00
Orion Poplawski 88a98a64f0 Do not BR matplotlib on epel10 2025-11-29 13:39:07 -07:00
Python Maint d350a66b6c Rebuilt for Python 3.14.0rc3 bytecode 2025-09-19 13:51:38 +02:00
Python Maint 1da3258f31 Rebuilt for Python 3.14.0rc2 bytecode 2025-08-15 14:15:29 +02:00
Fedora Release Engineering b318b70569 Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild 2025-07-25 09:06:41 +00:00
Python Maint ba8c034857 Rebuilt for Python 3.14 2025-06-03 20:11:15 +02:00
Karolina Surma 1304200fd8 Add compatibility with sphinx 8.2+ 2025-03-27 12:17:58 +01:00
Fedora Release Engineering 3527d0a767 Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild 2025-01-18 16:41:19 +00:00
Tomáš Hrnčiar ef51dbe996 Backport upstream patch needed for compatibility with sphinx 8 2024-12-03 12:08:45 +01: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
4 changed files with 54 additions and 33 deletions
+3
View File
@@ -8,3 +8,6 @@
/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
/numpydoc-1.9.0.tar.gz
-23
View File
@@ -1,23 +0,0 @@
From 2a7f4837e4731181c13f18641950b39b356c8ed3 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Tom=C3=A1=C5=A1=20Hrn=C4=8Diar?= <tomas.hrnciar@me.com>
Date: Wed, 28 Jun 2023 13:32:53 +0200
Subject: [PATCH] Replace ast.NameConstant deprecated in Python 3.12 with
ast.Constant
---
numpydoc/validate.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/numpydoc/validate.py b/numpydoc/validate.py
index b975f831..c49f97af 100644
--- a/numpydoc/validate.py
+++ b/numpydoc/validate.py
@@ -416,7 +416,7 @@ def get_returns_not_on_nested_functions(node):
return_values = [r.value for r in returns]
# Replace NameConstant nodes valued None for None.
for i, v in enumerate(return_values):
- if isinstance(v, ast.NameConstant) and v.value is None:
+ if isinstance(v, ast.Constant) and v.value is None:
return_values[i] = None
return any(return_values)
else:
+50 -9
View File
@@ -1,14 +1,19 @@
Name: python-numpydoc
Version: 1.6.0
Release: 4%{?dist}
Summary: Sphinx extension to support docstrings in NumPy format
# No matplot yet in EPEL10
%if 0%{?rhel} >= 10
%bcond_with matplotlib
%else
%bcond_without matplotlib
%endif
# Replace ast.NameConstant deprecated in Python 3.12 with ast.Constant
Patch: https://github.com/hrnciar/numpydoc/pull/1.patch
Name: python-numpydoc
Version: 1.9.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
BuildArch: noarch
BuildRequires: python3-devel
@@ -30,14 +35,17 @@ Summary: %{summary}
%prep
%autosetup -p1 -n numpydoc-%{version}
# 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
%if %{without matplotlib}
sed -i '/matplotlib/d' pyproject.toml
%endif
# Remove a useless shebang
sed -i '\,#!/usr/bin/env python,d' numpydoc/validate.py
%generate_buildrequires
%pyproject_buildrequires -x test
%pyproject_buildrequires -g test
%build
%pyproject_wheel
@@ -53,9 +61,42 @@ 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 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
- 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
+1 -1
View File
@@ -1 +1 @@
SHA512 (numpydoc-1.6.0.tar.gz) = 1296a88283add3e703c8e9361454b1e2f78798bf266e333665a78c93a535d1add1854ff00c842efce4b7523c042f299054f28a63ffcb9ad7bc1e7c98ad8526c4
SHA512 (numpydoc-1.9.0.tar.gz) = bd9cb472e27772d3c52f44da28e9f7345b9b880a2e4b786d70d783de9dcd97188f5d2f6e7cc128317b15e8a582540d3f179952829112f3fbbbc57058f1102295