15
0
forked from pool/python-hankel

Accepting request 814768 from home:badshah400:branches:devel:languages:python

- Update to version 1.1.0:
  * Adds ability to transform complex-valued functions.
- Use %{name}-%{version} naming scheme for source tarball.
- Update package versions in Requires and BuildRequires in keeping
  with upstream.
- Don't run tests for i586 arch where they take too long leading to
  the obs worker shutting down assuming a stuck job.

OBS-URL: https://build.opensuse.org/request/show/814768
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-hankel?expand=0&rev=13
This commit is contained in:
Tomáš Chvátal
2020-06-15 18:24:36 +00:00
committed by Git OBS Bridge
parent 98cbbc50f2
commit b1649068f2
4 changed files with 25 additions and 11 deletions

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:0015f1a6b6f5f1b5a813cc934323702499668138d37d9435da05a331a95f3148
size 6488850

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:a0ce9ee88d8783ff83005385c4432dc8a8e64640c332bfa851eb85f0c4f9fa6b
size 6488996

View File

@@ -1,3 +1,14 @@
-------------------------------------------------------------------
Wed Jun 10 02:35:57 UTC 2020 - Atri Bhattacharya <badshah400@gmail.com>
- Update to version 1.1.0:
* Adds ability to transform complex-valued functions.
- Use %{name}-%{version} naming scheme for source tarball.
- Update package versions in Requires and BuildRequires in keeping
with upstream.
- Don't run tests for i586 arch where they take too long leading to
the obs worker shutting down assuming a stuck job.
-------------------------------------------------------------------
Thu Apr 23 11:02:49 UTC 2020 - Tomáš Chvátal <tchvatal@suse.com>

View File

@@ -19,26 +19,26 @@
%define skip_python2 1
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
Name: python-hankel
Version: 1.0.2
Version: 1.1.0
Release: 0
Summary: Hankel Transformations using method of Ogata 2005
License: MIT
Group: Development/Languages/Python
URL: https://github.com/steven-murray/hankel
Source: https://github.com/steven-murray/hankel/archive/%{version}.tar.gz
Source: https://github.com/steven-murray/hankel/archive/v%{version}.tar.gz#/%{name}-%{version}.tar.gz
BuildRequires: %{python_module setuptools_scm}
BuildRequires: %{python_module setuptools}
BuildRequires: fdupes
BuildRequires: python-rpm-macros
Requires: python-mpmath >= 0.18
Requires: python-numpy >= 1.6.1
Requires: python-scipy >= 0.12.0
Requires: python-mpmath >= 1.0.0
Requires: python-numpy >= 1.9.3
Requires: python-scipy >= 0.16.1
BuildArch: noarch
# SECTION test requirements
BuildRequires: %{python_module mpmath >= 0.18}
BuildRequires: %{python_module numpy >= 1.6.1}
BuildRequires: %{python_module mpmath >= 1.0.0}
BuildRequires: %{python_module numpy >= 1.9.3}
BuildRequires: %{python_module pytest}
BuildRequires: %{python_module scipy >= 0.12.0}
BuildRequires: %{python_module scipy >= 0.16.1}
# /SECTION
%python_subpackages
@@ -56,8 +56,11 @@ transformations using the method of Ogata 2005.
%python_install
%python_expand %fdupes %{buildroot}%{$python_sitelib}
# TESTS TAKE TOO LONG ON i586 LEADING TO OBS WORKER TIMING OUT
%if "%{_lib}" != "lib"
%check
%pytest
%endif
%files %{python_files}
%doc README.rst CHANGELOG.rst