Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package python-Bottleneck for openSUSE:Factory checked in at 2023-01-23 18:30:23 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/python-Bottleneck (Old) and /work/SRC/openSUSE:Factory/.python-Bottleneck.new.32243 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-Bottleneck" Mon Jan 23 18:30:23 2023 rev:13 rq:1059990 version:1.3.6 Changes: -------- --- /work/SRC/openSUSE:Factory/python-Bottleneck/python-Bottleneck.changes 2022-12-25 15:14:39.573307407 +0100 +++ /work/SRC/openSUSE:Factory/.python-Bottleneck.new.32243/python-Bottleneck.changes 2023-01-23 18:30:24.155483948 +0100 @@ -1,0 +2,9 @@ +Fri Jan 20 15:18:50 UTC 2023 - Dirk Müller <dmuel...@suse.com> + +- update to 1.3.6: + * Fix ValueError: cannot convert float NaN to integer with new numpy + version + * Python 3.6 wheel won't be built anymore because of the deprecation in + the associated Python Github action + +------------------------------------------------------------------- Old: ---- Bottleneck-1.3.5.tar.gz New: ---- Bottleneck-1.3.6.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ python-Bottleneck.spec ++++++ --- /var/tmp/diff_new_pack.MMP8AY/_old 2023-01-23 18:30:24.927488713 +0100 +++ /var/tmp/diff_new_pack.MMP8AY/_new 2023-01-23 18:30:24.979489034 +0100 @@ -1,7 +1,7 @@ # # spec file for package python-Bottleneck # -# Copyright (c) 2022 SUSE LLC +# Copyright (c) 2023 SUSE LLC # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -18,7 +18,7 @@ %define skip_python2 1 Name: python-Bottleneck -Version: 1.3.5 +Version: 1.3.6 Release: 0 Summary: A collection of fast NumPy array functions License: BSD-2-Clause AND BSD-3-Clause ++++++ Bottleneck-1.3.5.tar.gz -> Bottleneck-1.3.6.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/Bottleneck-1.3.5/Bottleneck.egg-info/PKG-INFO new/Bottleneck-1.3.6/Bottleneck.egg-info/PKG-INFO --- old/Bottleneck-1.3.5/Bottleneck.egg-info/PKG-INFO 2022-07-02 20:53:06.000000000 +0200 +++ new/Bottleneck-1.3.6/Bottleneck.egg-info/PKG-INFO 2023-01-20 00:21:35.000000000 +0100 @@ -1,6 +1,6 @@ Metadata-Version: 2.1 Name: Bottleneck -Version: 1.3.5 +Version: 1.3.6 Summary: Fast NumPy array functions written in C Home-page: https://github.com/pydata/bottleneck Download-URL: http://pypi.python.org/pypi/Bottleneck diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/Bottleneck-1.3.5/PKG-INFO new/Bottleneck-1.3.6/PKG-INFO --- old/Bottleneck-1.3.5/PKG-INFO 2022-07-02 20:53:06.906827200 +0200 +++ new/Bottleneck-1.3.6/PKG-INFO 2023-01-20 00:21:35.330396400 +0100 @@ -1,6 +1,6 @@ Metadata-Version: 2.1 Name: Bottleneck -Version: 1.3.5 +Version: 1.3.6 Summary: Fast NumPy array functions written in C Home-page: https://github.com/pydata/bottleneck Download-URL: http://pypi.python.org/pypi/Bottleneck diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/Bottleneck-1.3.5/RELEASE.rst new/Bottleneck-1.3.6/RELEASE.rst --- old/Bottleneck-1.3.5/RELEASE.rst 2022-07-02 20:52:54.000000000 +0200 +++ new/Bottleneck-1.3.6/RELEASE.rst 2023-01-20 00:21:20.000000000 +0100 @@ -6,6 +6,21 @@ These are the major changes made in each release. For details of the changes see the commit log at https://github.com/pydata/bottleneck +Bottleneck 1.3.6 +================ + +*Release date: 2023-01-19* + +Bug Fixes +~~~~~~~~~ +- Fix ValueError: cannot convert float NaN to integer with new numpy version + +Cleanup +~~~~~~~~ +- Python 3.6 wheel won't be built anymore because of the deprecation in the associated + Python Github action + + Bottleneck 1.3.5 ================ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/Bottleneck-1.3.5/bottleneck/_version.py new/Bottleneck-1.3.6/bottleneck/_version.py --- old/Bottleneck-1.3.5/bottleneck/_version.py 2022-07-02 20:53:06.906827200 +0200 +++ new/Bottleneck-1.3.6/bottleneck/_version.py 2023-01-20 00:21:35.330396400 +0100 @@ -8,11 +8,11 @@ version_json = ''' { - "date": "2022-07-02T20:32:46+0200", + "date": "2023-01-19T19:43:43+0100", "dirty": false, "error": null, - "full-revisionid": "4d6b551c3bb4bba4c229303a23c0887b90132f76", - "version": "1.3.5" + "full-revisionid": "8f16cd73ec48b21c5a776e93b94464f741767254", + "version": "1.3.6" } ''' # END VERSION_JSON diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/Bottleneck-1.3.5/bottleneck/slow/move.py new/Bottleneck-1.3.6/bottleneck/slow/move.py --- old/Bottleneck-1.3.5/bottleneck/slow/move.py 2022-07-02 20:52:54.000000000 +0200 +++ new/Bottleneck-1.3.6/bottleneck/slow/move.py 2023-01-20 00:21:20.000000000 +0100 @@ -232,8 +232,9 @@ # At least one dimension has length 0 shape = list(a.shape) shape.pop(axis) - r = np.empty(shape, dtype=a.dtype) + r = np.empty(shape, dtype=float) r.fill(np.nan) + r = r.astype(a.dtype) if (r.ndim == 0) and (r.size == 1): r = np.nan return r diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/Bottleneck-1.3.5/doc/source/reference.rst new/Bottleneck-1.3.6/doc/source/reference.rst --- old/Bottleneck-1.3.5/doc/source/reference.rst 2022-07-02 20:52:54.000000000 +0200 +++ new/Bottleneck-1.3.6/doc/source/reference.rst 2023-01-20 00:21:20.000000000 +0100 @@ -31,7 +31,7 @@ Reduce ------ -Functions the reduce the input array along the specified axis. +Functions that reduce the input array along the specified axis. ------------