Compare commits
4 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 96b4a4f400 | |||
| 1e1d857631 | |||
| 166b4c8d5d | |||
| 1a61cff732 |
@@ -0,0 +1,23 @@
|
||||
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:
|
||||
+13
-1
@@ -1,8 +1,11 @@
|
||||
Name: python-numpydoc
|
||||
Version: 1.4.0
|
||||
Release: 1%{?dist}
|
||||
Release: 4%{?dist}
|
||||
Summary: Sphinx extension to support docstrings in NumPy format
|
||||
|
||||
# Replace ast.NameConstant deprecated in Python 3.12 with ast.Constant
|
||||
Patch: https://github.com/hrnciar/numpydoc/pull/1.patch
|
||||
|
||||
License: BSD
|
||||
URL: https://pypi.python.org/pypi/numpydoc
|
||||
Source0: https://files.pythonhosted.org/packages/source/n/numpydoc/numpydoc-%{version}.tar.gz
|
||||
@@ -50,6 +53,15 @@ sed -Ei 's/\s+--cov\S+//g' setup.cfg
|
||||
%doc README.rst
|
||||
|
||||
%changelog
|
||||
* Fri Jul 21 2023 Fedora Release Engineering <releng@fedoraproject.org> - 1.4.0-4
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
|
||||
|
||||
* Tue Jun 27 2023 Python Maint <python-maint@redhat.com> - 1.4.0-3
|
||||
- Rebuilt for Python 3.12
|
||||
|
||||
* Fri Jan 20 2023 Fedora Release Engineering <releng@fedoraproject.org> - 1.4.0-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
|
||||
|
||||
* Mon Aug 15 2022 Lumír Balhar <lbalhar@redhat.com> - 1.4.0-1
|
||||
- Update to 1.4.0
|
||||
Resolves: rhbz#2043324 rhbz#2113637
|
||||
|
||||
Reference in New Issue
Block a user