From c0a67f73049e34ecc66be05bd1250308aff72690 Mon Sep 17 00:00:00 2001 From: DistroBaker Date: Thu, 4 Feb 2021 21:22:13 +0000 Subject: [PATCH] Merged update from upstream sources This is an automated DistroBaker update from upstream sources. If you do not know what this is about or would like to opt out, contact the OSCI team. Source: https://src.fedoraproject.org/rpms/scipy.git#fad1b115d2748e65593f6a182d6853ba9b642b37 --- scipy.spec | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-) diff --git a/scipy.spec b/scipy.spec index 444aaad..8b09372 100644 --- a/scipy.spec +++ b/scipy.spec @@ -15,7 +15,7 @@ Summary: Scientific Tools for Python Name: scipy Version: 1.6.0 -Release: 1%{?dist} +Release: 3%{?dist} # BSD -- whole package except: # Boost -- scipy/special/cephes/scipy_iv.c @@ -137,6 +137,9 @@ pathfix.py -pni "%{__python3} %{py3_shbang_opts}" %{buildroot}%{python3_sitearch # check against the reference BLAS/LAPACK export FLEXIBLAS=netlib +# default test timeout +TIMEOUT=500 + %ifarch s390x # skip failing tests on s390x for now export PYTEST_ADDOPTS="-k '\ @@ -151,10 +154,13 @@ export PYTEST_ADDOPTS="-k '\ not test_kde_integer_input and \ not test_pdf_logpdf and \ not test_pdf_logpdf_weighted'" + +# some tests (namely test_logpdf_overflow) tend to run for a long time on s390x +TIMEOUT=1000 %endif pushd %{buildroot}/%{python3_sitearch} -%{pytest} --timeout=500 scipy --numprocesses=auto +%{pytest} --timeout=${TIMEOUT} scipy --numprocesses=auto # Remove test remnants rm -rf gram{A,B} popd @@ -171,6 +177,12 @@ popd %endif %changelog +* Wed Feb 03 2021 Nikola Forró - 1.6.0-3 +- Increase test timeout on s390x + +* Wed Jan 27 2021 Fedora Release Engineering - 1.6.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild + * Mon Jan 04 2021 Nikola Forró - 1.6.0-1 - New upstream release 1.6.0 resolves: #1906692