5 Commits
f37 ... f40

Author SHA1 Message Date
Fedora Release Engineering
64e5ff5341 Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild 2024-01-26 00:44:39 +00:00
Fedora Release Engineering
a2335368d8 Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild 2024-01-21 22:51:51 +00:00
Fedora Release Engineering
9cab2e9c11 Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
Signed-off-by: Fedora Release Engineering <releng@fedoraproject.org>
2023-07-21 06:50:59 +00:00
Python Maint
40d1e0ba99 Rebuilt for Python 3.12 2023-06-28 13:50:20 +02:00
Elliott Sales de Andrade
a6c5945732 Fix build with Sphinx 6 2023-05-08 00:10:34 -04:00
2 changed files with 41 additions and 1 deletions

View File

@@ -0,0 +1,26 @@
From 00f39d74f8788ad5aa0dbfe34e7b66b38d0c63d1 Mon Sep 17 00:00:00 2001
From: Elliott Sales de Andrade <quantum.analyst@gmail.com>
Date: Mon, 8 May 2023 00:05:59 -0400
Subject: [PATCH] Fix doc build with Sphinx 6
Signed-off-by: Elliott Sales de Andrade <quantum.analyst@gmail.com>
---
doc/source/conf.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/doc/source/conf.py b/doc/source/conf.py
index 7efdfd8..ab40673 100644
--- a/doc/source/conf.py
+++ b/doc/source/conf.py
@@ -226,7 +226,7 @@ latex_documents = [
# If false, no module index is generated.
# latex_use_modindex = True
-extlinks = {"issue": ("https://github.com/pydata/bottleneck/issues/%s", "#")}
+extlinks = {"issue": ("https://github.com/pydata/bottleneck/issues/%s", "#%s")}
intersphinx_mapping = {
"numpy": ("https://docs.scipy.org/doc/numpy/", None),
"numpydoc": ("https://numpydoc.readthedocs.io/en/latest/", None),
--
2.40.0

View File

@@ -2,12 +2,14 @@
Name: python-%{upname}
Version: 1.3.7
Release: 1%{?dist}
Release: 5%{?dist}
Summary: Collection of fast NumPy array functions written in Cython
License: BSD
URL: https://pypi.org/project/Bottleneck/
Source0: https://files.pythonhosted.org/packages/source/B/%{upname}/%{upname}-%{version}.tar.gz
# https://github.com/pydata/bottleneck/pull/432
Patch0001: 0001-Fix-doc-build-with-Sphinx-6.patch
BuildRequires: gcc
@@ -100,6 +102,18 @@ rm -rf %{buildroot}%{python3_sitearch}/.pytest_cache
%changelog
* Fri Jan 26 2024 Fedora Release Engineering <releng@fedoraproject.org> - 1.3.7-5
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
* Sun Jan 21 2024 Fedora Release Engineering <releng@fedoraproject.org> - 1.3.7-4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
* Fri Jul 21 2023 Fedora Release Engineering <releng@fedoraproject.org> - 1.3.7-3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
* Wed Jun 28 2023 Python Maint <python-maint@redhat.com> - 1.3.7-2
- Rebuilt for Python 3.12
* Tue Apr 04 2023 Tomáš Hrnčiar <thrnciar@redhat.com> - 1.3.7-1
- Update to 1.3.7
Fixes: rhbz#2056294