Compare commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
5ff2e8f3fd | ||
|
|
a8f927feaf | ||
|
|
88a98a64f0 | ||
|
|
d350a66b6c | ||
|
|
1da3258f31 | ||
|
|
b318b70569 | ||
|
|
ba8c034857 | ||
|
|
1304200fd8 | ||
|
|
3527d0a767 | ||
|
|
ef51dbe996 | ||
|
|
b8106ec856 | ||
|
|
3dd068b313 | ||
|
|
13b04dc01e | ||
|
|
1c670c7040 | ||
|
|
5cc633d991 | ||
|
|
06205cb314 | ||
|
|
0065445572 | ||
|
|
b58a306323 | ||
|
|
db4970851a | ||
|
|
22da03b0f1 | ||
|
|
b791c392d4 | ||
|
|
122378bdc0 | ||
|
|
2b0aa46383 |
@@ -7,3 +7,7 @@
|
|||||||
/numpydoc-0.9.2.tar.gz
|
/numpydoc-0.9.2.tar.gz
|
||||||
/numpydoc-1.1.0.tar.gz
|
/numpydoc-1.1.0.tar.gz
|
||||||
/numpydoc-1.4.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
|
||||||
|
|||||||
@@ -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:
|
|
||||||
+78
-20
@@ -1,47 +1,58 @@
|
|||||||
|
# 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.4.0
|
Version: 1.9.0
|
||||||
Release: 4%{?dist}
|
Release: 2%{?dist}
|
||||||
Summary: Sphinx extension to support docstrings in NumPy format
|
Summary: Sphinx extension to support docstrings in NumPy format
|
||||||
|
|
||||||
# Replace ast.NameConstant deprecated in Python 3.12 with ast.Constant
|
License: BSD-2-Clause
|
||||||
Patch: https://github.com/hrnciar/numpydoc/pull/1.patch
|
|
||||||
|
|
||||||
License: BSD
|
|
||||||
URL: https://pypi.python.org/pypi/numpydoc
|
URL: https://pypi.python.org/pypi/numpydoc
|
||||||
Source0: https://files.pythonhosted.org/packages/source/n/numpydoc/numpydoc-%{version}.tar.gz
|
Source: %pypi_source numpydoc
|
||||||
|
|
||||||
BuildArch: noarch
|
BuildArch: noarch
|
||||||
|
|
||||||
BuildRequires: python3-devel
|
BuildRequires: python3-devel
|
||||||
BuildRequires: pyproject-rpm-macros
|
|
||||||
|
|
||||||
%description
|
%global _description %{expand:
|
||||||
Numpydoc inserts a hook into Sphinx's autodoc that converts docstrings
|
This package provides the numpydoc Sphinx extension for handling docstrings
|
||||||
following the NumPy/SciPy format to a form palatable to Sphinx.
|
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
|
%package -n python3-numpydoc
|
||||||
Summary: %{summary}
|
Summary: %{summary}
|
||||||
%{?python_provide:%python_provide python3-numpydoc}
|
|
||||||
%description -n python3-numpydoc
|
%description -n python3-numpydoc %{_description}
|
||||||
Numpydoc inserts a hook into Sphinx's autodoc that converts docstrings
|
|
||||||
following the NumPy/SciPy format to a form palatable to Sphinx.
|
|
||||||
|
|
||||||
|
|
||||||
%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
|
sed -i '/pytest-cov/d' pyproject.toml
|
||||||
sed -Ei 's/\s+--cov\S+//g' setup.cfg
|
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
|
%generate_buildrequires
|
||||||
%pyproject_buildrequires -x testing
|
%pyproject_buildrequires -g test
|
||||||
|
|
||||||
%build
|
%build
|
||||||
%pyproject_wheel
|
%pyproject_wheel
|
||||||
|
|
||||||
%install
|
%install
|
||||||
%pyproject_install
|
%pyproject_install
|
||||||
%pyproject_save_files numpydoc
|
%pyproject_save_files -l numpydoc
|
||||||
|
|
||||||
%check
|
%check
|
||||||
# Deselected tests need to download an inventory from docs.python.org
|
# Deselected tests need to download an inventory from docs.python.org
|
||||||
@@ -49,10 +60,57 @@ sed -Ei 's/\s+--cov\S+//g' setup.cfg
|
|||||||
|
|
||||||
|
|
||||||
%files -n python3-numpydoc -f %pyproject_files
|
%files -n python3-numpydoc -f %pyproject_files
|
||||||
%license LICENSE.txt
|
|
||||||
%doc README.rst
|
%doc README.rst
|
||||||
|
%{_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
|
||||||
|
- 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
|
* Fri Jul 21 2023 Fedora Release Engineering <releng@fedoraproject.org> - 1.4.0-4
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
|
||||||
|
|
||||||
|
|||||||
@@ -1 +1 @@
|
|||||||
SHA512 (numpydoc-1.4.0.tar.gz) = a2ef773e2e4bce015139650fc8cd71026fccc27a80bb4ff2af79328d17cfc7ec5387216e4e7dcbc6ce7a3ee8a1aff835f5310e146c2e6b34c6eeb2db4af3991b
|
SHA512 (numpydoc-1.9.0.tar.gz) = bd9cb472e27772d3c52f44da28e9f7345b9b880a2e4b786d70d783de9dcd97188f5d2f6e7cc128317b15e8a582540d3f179952829112f3fbbbc57058f1102295
|
||||||
|
|||||||
Reference in New Issue
Block a user