commit python-hankel for openSUSE:Factory

2020-09-15 Thread root
Hello community,

here is the log from the commit of package python-hankel for openSUSE:Factory 
checked in at 2020-09-15 16:27:48

Comparing /work/SRC/openSUSE:Factory/python-hankel (Old)
 and  /work/SRC/openSUSE:Factory/.python-hankel.new.4249 (New)


Package is "python-hankel"

Tue Sep 15 16:27:48 2020 rev:8 rq:834269 version:1.1.0

Changes:

--- /work/SRC/openSUSE:Factory/python-hankel/python-hankel.changes  
2020-06-16 13:46:16.706057864 +0200
+++ /work/SRC/openSUSE:Factory/.python-hankel.new.4249/python-hankel.changes
2020-09-15 16:27:59.966580088 +0200
@@ -1,0 +2,8 @@
+Mon Sep 14 09:01:07 UTC 2020 - Atri Bhattacharya 
+
+- Switch to using PyPI source tarball to prevent version
+  determination errors from setuptools.
+- Make file list more specific, particularly to the versioning of
+  the egg-info dir.
+
+---

Old:

  python-hankel-1.1.0.tar.gz

New:

  hankel-1.1.0.tar.gz



Other differences:
--
++ python-hankel.spec ++
--- /var/tmp/diff_new_pack.OO6DHL/_old  2020-09-15 16:28:01.482581539 +0200
+++ /var/tmp/diff_new_pack.OO6DHL/_new  2020-09-15 16:28:01.482581539 +0200
@@ -17,6 +17,7 @@
 
 
 %define skip_python2 1
+%define modname hankel
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 Name:   python-hankel
 Version:1.1.0
@@ -25,7 +26,7 @@
 License:MIT
 Group:  Development/Languages/Python
 URL:https://github.com/steven-murray/hankel
-Source: 
https://github.com/steven-murray/hankel/archive/v%{version}.tar.gz#/%{name}-%{version}.tar.gz
+Source: 
https://files.pythonhosted.org/packages/source/h/%{modname}/%{modname}-%{version}.tar.gz
 BuildRequires:  %{python_module setuptools_scm}
 BuildRequires:  %{python_module setuptools}
 BuildRequires:  fdupes
@@ -65,6 +66,7 @@
 %files %{python_files}
 %doc README.rst CHANGELOG.rst
 %license LICENSE.rst
-%{python_sitelib}/*
+%{python_sitelib}/%{modname}/
+%{python_sitelib}/%{modname}-%{version}-py%{python_version}.egg-info/
 
 %changelog




commit python-hankel for openSUSE:Factory

2020-06-16 Thread root
Hello community,

here is the log from the commit of package python-hankel for openSUSE:Factory 
checked in at 2020-06-16 13:45:41

Comparing /work/SRC/openSUSE:Factory/python-hankel (Old)
 and  /work/SRC/openSUSE:Factory/.python-hankel.new.3606 (New)


Package is "python-hankel"

Tue Jun 16 13:45:41 2020 rev:7 rq:814779 version:1.1.0

Changes:

--- /work/SRC/openSUSE:Factory/python-hankel/python-hankel.changes  
2020-04-23 18:37:23.860886650 +0200
+++ /work/SRC/openSUSE:Factory/.python-hankel.new.3606/python-hankel.changes
2020-06-16 13:46:16.706057864 +0200
@@ -1,0 +2,11 @@
+Wed Jun 10 02:35:57 UTC 2020 - Atri Bhattacharya 
+
+- 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.
+
+---

Old:

  1.0.2.tar.gz

New:

  python-hankel-1.1.0.tar.gz



Other differences:
--
++ python-hankel.spec ++
--- /var/tmp/diff_new_pack.2DCe7f/_old  2020-06-16 13:46:18.130069317 +0200
+++ /var/tmp/diff_new_pack.2DCe7f/_new  2020-06-16 13:46:18.134069349 +0200
@@ -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 @@
 %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




commit python-hankel for openSUSE:Factory

2020-04-23 Thread root
Hello community,

here is the log from the commit of package python-hankel for openSUSE:Factory 
checked in at 2020-04-23 18:37:19

Comparing /work/SRC/openSUSE:Factory/python-hankel (Old)
 and  /work/SRC/openSUSE:Factory/.python-hankel.new.2738 (New)


Package is "python-hankel"

Thu Apr 23 18:37:19 2020 rev:6 rq:796501 version:1.0.2

Changes:

--- /work/SRC/openSUSE:Factory/python-hankel/python-hankel.changes  
2020-04-08 19:57:59.657180841 +0200
+++ /work/SRC/openSUSE:Factory/.python-hankel.new.2738/python-hankel.changes
2020-04-23 18:37:23.860886650 +0200
@@ -1,0 +2,5 @@
+Thu Apr 23 11:02:49 UTC 2020 - Tomáš Chvátal 
+
+- Drop py2 deps as package is py3 only
+
+---



Other differences:
--
++ python-hankel.spec ++
--- /var/tmp/diff_new_pack.GQmXF3/_old  2020-04-23 18:37:24.672888204 +0200
+++ /var/tmp/diff_new_pack.GQmXF3/_new  2020-04-23 18:37:24.676888211 +0200
@@ -39,11 +39,7 @@
 BuildRequires:  %{python_module numpy >= 1.6.1}
 BuildRequires:  %{python_module pytest}
 BuildRequires:  %{python_module scipy >= 0.12.0}
-BuildRequires:  python-future
 # /SECTION
-%ifpython2
-Requires:   python-future
-%endif
 %python_subpackages
 
 %description




commit python-hankel for openSUSE:Factory

2020-04-08 Thread root
Hello community,

here is the log from the commit of package python-hankel for openSUSE:Factory 
checked in at 2020-04-08 19:57:43

Comparing /work/SRC/openSUSE:Factory/python-hankel (Old)
 and  /work/SRC/openSUSE:Factory/.python-hankel.new.3248 (New)


Package is "python-hankel"

Wed Apr  8 19:57:43 2020 rev:5 rq:792494 version:1.0.2

Changes:

--- /work/SRC/openSUSE:Factory/python-hankel/python-hankel.changes  
2019-09-27 14:45:59.801147285 +0200
+++ /work/SRC/openSUSE:Factory/.python-hankel.new.3248/python-hankel.changes
2020-04-08 19:57:59.657180841 +0200
@@ -1,0 +2,12 @@
+Wed Apr  8 14:46:49 UTC 2020 - Marketa Calabkova 
+
+- Update to 1.0.2
+  * Limit calculation for k=0 provided (resulted in nan before)
+  * Alternative hankel kernel now selectable: sqrt(x) * J(nu, x)
+  * Caching of series factors for faster calculations
+  * Various infrastructure upgrades (setuptools_scm, pre-commit, black)
+  * Saver calculation of xrange_approx
+  * Methods ``G`` and ``deltaG`` now named ``final_term_amplitude`` and 
``slope_of_last_term``.
+  * Upstream apparently dropped Python 2.
+
+---

Old:

  v0.3.9.tar.gz

New:

  1.0.2.tar.gz



Other differences:
--
++ python-hankel.spec ++
--- /var/tmp/diff_new_pack.orxeX5/_old  2020-04-08 19:58:01.305182045 +0200
+++ /var/tmp/diff_new_pack.orxeX5/_new  2020-04-08 19:58:01.309182048 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package python-hankel
 #
-# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2020 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -16,15 +16,17 @@
 #
 
 
+%define skip_python2 1
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 Name:   python-hankel
-Version:0.3.9
+Version:1.0.2
 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/v%{version}.tar.gz
+Source: 
https://github.com/steven-murray/hankel/archive/%{version}.tar.gz
+BuildRequires:  %{python_module setuptools_scm}
 BuildRequires:  %{python_module setuptools}
 BuildRequires:  fdupes
 BuildRequires:  python-rpm-macros

++ v0.3.9.tar.gz -> 1.0.2.tar.gz ++
/work/SRC/openSUSE:Factory/python-hankel/v0.3.9.tar.gz 
/work/SRC/openSUSE:Factory/.python-hankel.new.3248/1.0.2.tar.gz differ: char 
13, line 1




commit python-hankel for openSUSE:Factory

2019-09-27 Thread root
Hello community,

here is the log from the commit of package python-hankel for openSUSE:Factory 
checked in at 2019-09-27 14:45:58

Comparing /work/SRC/openSUSE:Factory/python-hankel (Old)
 and  /work/SRC/openSUSE:Factory/.python-hankel.new.2352 (New)


Package is "python-hankel"

Fri Sep 27 14:45:58 2019 rev:4 rq:730346 version:0.3.9

Changes:

--- /work/SRC/openSUSE:Factory/python-hankel/python-hankel.changes  
2019-03-06 15:47:12.988453529 +0100
+++ /work/SRC/openSUSE:Factory/.python-hankel.new.2352/python-hankel.changes
2019-09-27 14:45:59.801147285 +0200
@@ -1,0 +2,6 @@
+Thu Sep 12 10:01:25 UTC 2019 - Tomáš Chvátal 
+
+- Update to 0.3.9:
+  * Fixed SymmetricFourierTransform default N to be dynamic, like 
HankelTransform.
+
+---

Old:

  v0.3.8.tar.gz

New:

  v0.3.9.tar.gz



Other differences:
--
++ python-hankel.spec ++
--- /var/tmp/diff_new_pack.cmhGXV/_old  2019-09-27 14:46:02.905139214 +0200
+++ /var/tmp/diff_new_pack.cmhGXV/_new  2019-09-27 14:46:02.929139151 +0200
@@ -18,7 +18,7 @@
 
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 Name:   python-hankel
-Version:0.3.8
+Version:0.3.9
 Release:0
 Summary:Hankel Transformations using method of Ogata 2005
 License:MIT
@@ -59,7 +59,7 @@
 %python_expand %fdupes %{buildroot}%{$python_sitelib}
 
 %check
-%python_expand PYTHONPATH=%{buildroot}%{$python_sitelib} 
py.test-%{$python_bin_suffix} -v
+%pytest
 
 %files %{python_files}
 %doc README.rst CHANGELOG.rst

++ v0.3.8.tar.gz -> v0.3.9.tar.gz ++
/work/SRC/openSUSE:Factory/python-hankel/v0.3.8.tar.gz 
/work/SRC/openSUSE:Factory/.python-hankel.new.2352/v0.3.9.tar.gz differ: char 
12, line 1




commit python-hankel for openSUSE:Factory

2019-03-06 Thread root
Hello community,

here is the log from the commit of package python-hankel for openSUSE:Factory 
checked in at 2019-03-06 15:47:10

Comparing /work/SRC/openSUSE:Factory/python-hankel (Old)
 and  /work/SRC/openSUSE:Factory/.python-hankel.new.28833 (New)


Package is "python-hankel"

Wed Mar  6 15:47:10 2019 rev:3 rq:681681 version:0.3.8

Changes:

--- /work/SRC/openSUSE:Factory/python-hankel/python-hankel.changes  
2018-12-24 11:37:58.565633992 +0100
+++ /work/SRC/openSUSE:Factory/.python-hankel.new.28833/python-hankel.changes   
2019-03-06 15:47:12.988453529 +0100
@@ -1,0 +2,13 @@
+Mon Mar  4 13:40:35 UTC 2019 - Tomáš Chvátal 
+
+- Update to 0.3.8:
+  * Swapped to pytest from nose for all testing
+  * Removed warnings of overflow for cosh and sinh functions
+  * Improved documentation in many areas.
+  * Swapped out default 3.2/h for pi/h, which sounds way cooler :-)
+  * Fixed an error in tests such that the wrong analytic function was being 
tested.
+  * Removed a check for deltaG in get_h, which sometimes fails spectacularly.
+  * Fixed issue in Py3 in which dim=2 would not run the fast function (thanks 
@MuellerSeb)
+  * Added support for transforms with nu=-0.5 (thanks @MuellerSeb)
+
+---

Old:

  v0.3.5.tar.gz

New:

  v0.3.8.tar.gz



Other differences:
--
++ python-hankel.spec ++
--- /var/tmp/diff_new_pack.fM109w/_old  2019-03-06 15:47:17.008452463 +0100
+++ /var/tmp/diff_new_pack.fM109w/_new  2019-03-06 15:47:17.044452454 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package python-hankel
 #
-# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -18,27 +18,30 @@
 
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 Name:   python-hankel
-Version:0.3.5
+Version:0.3.8
 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/v0.3.5.tar.gz
+URL:https://github.com/steven-murray/hankel
+Source: 
https://github.com/steven-murray/hankel/archive/v%{version}.tar.gz
 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
+BuildArch:  noarch
 # SECTION test requirements
 BuildRequires:  %{python_module mpmath >= 0.18}
-BuildRequires:  %{python_module nose}
 BuildRequires:  %{python_module numpy >= 1.6.1}
+BuildRequires:  %{python_module pytest}
 BuildRequires:  %{python_module scipy >= 0.12.0}
+BuildRequires:  python-future
 # /SECTION
-BuildRequires:  fdupes
-Requires:   python-mpmath >= 0.18
-Requires:   python-numpy >= 1.6.1
-Requires:   python-scipy >= 0.12.0
-BuildArch:  noarch
-
+%ifpython2
+Requires:   python-future
+%endif
 %python_subpackages
 
 %description
@@ -56,7 +59,7 @@
 %python_expand %fdupes %{buildroot}%{$python_sitelib}
 
 %check
-%python_exec %{_bindir}/nosetests
+%python_expand PYTHONPATH=%{buildroot}%{$python_sitelib} 
py.test-%{$python_bin_suffix} -v
 
 %files %{python_files}
 %doc README.rst CHANGELOG.rst

++ v0.3.5.tar.gz -> v0.3.8.tar.gz ++
/work/SRC/openSUSE:Factory/python-hankel/v0.3.5.tar.gz 
/work/SRC/openSUSE:Factory/.python-hankel.new.28833/v0.3.8.tar.gz differ: char 
13, line 1




commit python-hankel for openSUSE:Factory

2018-12-24 Thread root
Hello community,

here is the log from the commit of package python-hankel for openSUSE:Factory 
checked in at 2018-12-24 11:37:57

Comparing /work/SRC/openSUSE:Factory/python-hankel (Old)
 and  /work/SRC/openSUSE:Factory/.python-hankel.new.28833 (New)


Package is "python-hankel"

Mon Dec 24 11:37:57 2018 rev:2 rq:659409 version:0.3.5

Changes:

--- /work/SRC/openSUSE:Factory/python-hankel/python-hankel.changes  
2018-04-01 17:27:01.854424160 +0200
+++ /work/SRC/openSUSE:Factory/.python-hankel.new.28833/python-hankel.changes   
2018-12-24 11:37:58.565633992 +0100
@@ -1,0 +2,5 @@
+Tue Dec  4 12:48:48 UTC 2018 - Matej Cepl 
+
+- Remove superfluous devel dependency for noarch package
+
+---



Other differences:
--
++ python-hankel.spec ++
--- /var/tmp/diff_new_pack.UZF8No/_old  2018-12-24 11:37:59.465633193 +0100
+++ /var/tmp/diff_new_pack.UZF8No/_new  2018-12-24 11:37:59.469633190 +0100
@@ -12,24 +12,24 @@
 # license that conforms to the Open Source Definition (Version 1.9)
 # published by the Open Source Initiative.
 
-# Please submit bugfixes or comments via http://bugs.opensuse.org/
+# Please submit bugfixes or comments via https://bugs.opensuse.org/
+#
 
 
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 Name:   python-hankel
 Version:0.3.5
 Release:0
-License:MIT
 Summary:Hankel Transformations using method of Ogata 2005
-Url:https://github.com/steven-murray/hankel
+License:MIT
 Group:  Development/Languages/Python
+Url:https://github.com/steven-murray/hankel
 Source: https://github.com/steven-murray/hankel/archive/v0.3.5.tar.gz
-BuildRequires:  python-rpm-macros
-BuildRequires:  %{python_module devel}
 BuildRequires:  %{python_module setuptools}
+BuildRequires:  python-rpm-macros
 # SECTION test requirements
-BuildRequires:  %{python_module nose}
 BuildRequires:  %{python_module mpmath >= 0.18}
+BuildRequires:  %{python_module nose}
 BuildRequires:  %{python_module numpy >= 1.6.1}
 BuildRequires:  %{python_module scipy >= 0.12.0}
 # /SECTION