commit python-fastcluster for openSUSE:Factory

2024-07-22 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package python-fastcluster for 
openSUSE:Factory checked in at 2024-07-22 17:14:58

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


Package is "python-fastcluster"

Mon Jul 22 17:14:58 2024 rev:12 rq:1188506 version:1.2.6

Changes:

--- /work/SRC/openSUSE:Factory/python-fastcluster/python-fastcluster.changes
2022-09-29 18:14:17.811365416 +0200
+++ 
/work/SRC/openSUSE:Factory/.python-fastcluster.new.17339/python-fastcluster.changes
 2024-07-22 17:15:15.734692206 +0200
@@ -1,0 +2,8 @@
+Fri Jul 19 02:32:28 UTC 2024 - Steve Kowalik 
+
+- Add patch support-numpy-2.patch:
+  * Support both numpy 1 and 2
+- Switch to pyproject macros.
+- No more greedy globs in %files.
+
+---

New:

  support-numpy-2.patch

BETA DEBUG BEGIN:
  New:
- Add patch support-numpy-2.patch:
  * Support both numpy 1 and 2
BETA DEBUG END:



Other differences:
--
++ python-fastcluster.spec ++
--- /var/tmp/diff_new_pack.gwJoQg/_old  2024-07-22 17:15:16.218711670 +0200
+++ /var/tmp/diff_new_pack.gwJoQg/_new  2024-07-22 17:15:16.222711830 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package python-fastcluster
 #
-# Copyright (c) 2022 SUSE LLC
+# Copyright (c) 2024 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -16,22 +16,22 @@
 #
 
 
-%define skip_python2 1
-%define skip_python36 1
-%{?!python_module:%define python_module() python-%{**} python3-%{**}}
 Name:   python-fastcluster
 Version:1.2.6
 Release:0
 Summary:Hierarchical clustering routines for Python
 License:BSD-2-Clause
-Group:  Development/Languages/Python
 URL:https://github.com/dmuellner/fastcluster
 Source: 
https://files.pythonhosted.org/packages/source/f/fastcluster/fastcluster-%{version}.tar.gz
+# PATCH-FIX-UPSTREAM gh#fastcluster/fastcluster#94
+Patch0: support-numpy-2.patch
 BuildRequires:  %{python_module devel}
 BuildRequires:  %{python_module numpy-devel >= 1.9}
+BuildRequires:  %{python_module pip}
 BuildRequires:  %{python_module pytest}
 BuildRequires:  %{python_module scipy}
 BuildRequires:  %{python_module setuptools}
+BuildRequires:  %{python_module wheel}
 BuildRequires:  fdupes
 BuildRequires:  gcc-c++
 BuildRequires:  python-rpm-macros
@@ -71,10 +71,10 @@
 
 %build
 export CFLAGS="%{optflags}"
-%python_build
+%pyproject_wheel
 
 %install
-%python_install
+%pyproject_install
 %python_expand %fdupes %{buildroot}%{$python_sitearch}
 
 %check
@@ -84,7 +84,10 @@
 %files %{python_files}
 %license COPYING.txt
 %doc CITATION.txt NEWS.txt README.txt
-%{python_sitearch}/*
+%{python_sitearch}/fastcluster.py
+%{python_sitearch}/_fastcluster.cpython-*.so
+%pycache_only %{python_sitearch}/__pycache__/fastcluster.*.pyc
+%{python_sitearch}/fastcluster-%{version}.dist-info
 
 %files -n %{name}-doc
 %doc docs/fastcluster.pdf

++ support-numpy-2.patch ++
>From 58cffa97fff38ca4dda3166b4ccb1a8eb27a124f Mon Sep 17 00:00:00 2001
From: Steve Kowalik 
Date: Fri, 19 Jul 2024 12:21:11 +1000
Subject: [PATCH] Support Numpy 2

Switch to using np.asarray() where required to support both Numpy 1 and
2.
---
 fastcluster.py | 8 
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/fastcluster.py b/fastcluster.py
index f5325a6..8778605 100644
--- a/fastcluster.py
+++ b/fastcluster.py
@@ -23,7 +23,7 @@
 __version_info__ = ('1', '2', '6')
 __version__ = '.'.join(__version_info__)
 
-from numpy import double, empty, array, ndarray, var, cov, dot, expand_dims, \
+from numpy import double, empty, array, asarray, ndarray, var, cov, dot, 
expand_dims, \
 ceil, sqrt
 from numpy.linalg import inv
 try:
@@ -227,7 +227,7 @@ def linkage(X, method='single', metric='euclidean', 
preserve_input=True):
 
 The linkage method does not treat NumPy's masked arrays as special
 and simply ignores the mask.'''
-X = array(X, copy=False, subok=True)
+X = asarray(X)
 if X.ndim==1:
 if method=='single':
 preserve_input = False
@@ -464,10 +464,10 @@ def linkage_vector(X, method='single', 
metric='euclidean', extraarg=None):
 dtype = bool if X.dtype==bool else double
 else:
 dtype = bool if metric in booleanmetrics else double
-X = array(X, dtype=dtype, copy=False, order='C', subok=True)
 else:
 assert metric=='euclidean'
-X = array(X, dtype=double, copy=(method=='ward'), order='C', 
subok=True)
+dtype = 

commit python-fastcluster for openSUSE:Factory

2022-09-29 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package python-fastcluster for 
openSUSE:Factory checked in at 2022-09-29 18:13:29

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


Package is "python-fastcluster"

Thu Sep 29 18:13:29 2022 rev:11 rq:1006738 version:1.2.6

Changes:

--- /work/SRC/openSUSE:Factory/python-fastcluster/python-fastcluster.changes
2022-01-15 20:05:40.533781257 +0100
+++ 
/work/SRC/openSUSE:Factory/.python-fastcluster.new.2275/python-fastcluster.changes
  2022-09-29 18:14:17.811365416 +0200
@@ -1,0 +2,10 @@
+Wed Sep 28 14:00:59 UTC 2022 - Arun Persaud 
+
+- update to version 1.2.6:
+  * Move to GitHub action for CI. No code changes.
+
+- changes from version 1.2.5:
+  * Updated pyproject.toml to work with Python 3.10 and future Python
+versions.
+
+---

Old:

  fastcluster-1.2.4.tar.gz

New:

  fastcluster-1.2.6.tar.gz



Other differences:
--
++ python-fastcluster.spec ++
--- /var/tmp/diff_new_pack.zk1MnT/_old  2022-09-29 18:14:18.395366557 +0200
+++ /var/tmp/diff_new_pack.zk1MnT/_new  2022-09-29 18:14:18.399366566 +0200
@@ -20,7 +20,7 @@
 %define skip_python36 1
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 Name:   python-fastcluster
-Version:1.2.4
+Version:1.2.6
 Release:0
 Summary:Hierarchical clustering routines for Python
 License:BSD-2-Clause

++ fastcluster-1.2.4.tar.gz -> fastcluster-1.2.6.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/fastcluster-1.2.4/CITATION.txt 
new/fastcluster-1.2.6/CITATION.txt
--- old/fastcluster-1.2.4/CITATION.txt  2021-05-23 17:25:34.0 +0200
+++ new/fastcluster-1.2.6/CITATION.txt  2022-02-27 11:25:41.0 +0100
@@ -2,4 +2,4 @@
 
 Daniel M??llner, fastcluster: Fast Hierarchical, Agglomerative Clustering
 Routines for R and Python, Journal of Statistical Software, 53 (2013), no. 9,
-1???18, https://www.jstatsoft.org/v53/i09/.
+1???18, https://doi.org/10.18637/jss.v053.i09.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/fastcluster-1.2.4/NEWS.txt 
new/fastcluster-1.2.6/NEWS.txt
--- old/fastcluster-1.2.4/NEWS.txt  2021-08-21 23:07:51.0 +0200
+++ new/fastcluster-1.2.6/NEWS.txt  2022-02-27 11:25:41.0 +0100
@@ -240,3 +240,11 @@
 Version 1.2.4, 08/21/2021
 
 ??? Fixed NumPy versions in Travis builds.
+
+Version 1.2.5, 02/26/2022
+
+??? Updated pyproject.toml to work with Python 3.10 and future Python versions.
+
+Version 1.2.6, 02/27/2022
+
+??? Move to GitHub action for CI. No code changes.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/fastcluster-1.2.4/PKG-INFO 
new/fastcluster-1.2.6/PKG-INFO
--- old/fastcluster-1.2.4/PKG-INFO  2021-08-22 09:27:51.725234700 +0200
+++ new/fastcluster-1.2.6/PKG-INFO  2022-02-27 11:25:56.448010700 +0100
@@ -1,6 +1,6 @@
 Metadata-Version: 2.1
 Name: fastcluster
-Version: 1.2.4
+Version: 1.2.6
 Summary: Fast hierarchical clustering routines for R and Python.
 Home-page: http://danifold.net
 Author: Daniel M??llner
@@ -80,6 +80,6 @@
 
 Reference: Daniel M??llner, *fastcluster: Fast Hierarchical, Agglomerative
 Clustering Routines for R and Python*, Journal of Statistical Software, **53**
-(2013), no. 9, 1???18, https://www.jstatsoft.org/v53/i09/.
+(2013), no. 9, 1???18, https://doi.org/10.18637/jss.v053.i09.
 
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/fastcluster-1.2.4/README.txt 
new/fastcluster-1.2.6/README.txt
--- old/fastcluster-1.2.4/README.txt2021-05-24 12:24:15.0 +0200
+++ new/fastcluster-1.2.6/README.txt2022-02-27 11:25:41.0 +0100
@@ -47,7 +47,7 @@
 
 Usage
 ???
-1.???R
+1. R
 
 In R, load the package with the following command:
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/fastcluster-1.2.4/dev-requirements.txt 
new/fastcluster-1.2.6/dev-requirements.txt
--- old/fastcluster-1.2.4/dev-requirements.txt  2018-05-13 22:28:24.0 
+0200
+++ new/fastcluster-1.2.6/dev-requirements.txt  1970-01-01 01:00:00.0 
+0100
@@ -1,2 +0,0 @@
-wheel
-conda
Binary files old/fastcluster-1.2.4/docs/fastcluster.pdf and 
new/fastcluster-1.2.6/docs/fastcluster.pdf differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/fastcluster-1.2.4/docs/fastcluster.tex 
new/fastcluster-1.2.6/docs/fastcluster.tex

commit python-fastcluster for openSUSE:Factory

2022-01-15 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package python-fastcluster for 
openSUSE:Factory checked in at 2022-01-15 20:05:21

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


Package is "python-fastcluster"

Sat Jan 15 20:05:21 2022 rev:10 rq:946660 version:1.2.4

Changes:

--- /work/SRC/openSUSE:Factory/python-fastcluster/python-fastcluster.changes
2021-06-01 10:40:52.709162070 +0200
+++ 
/work/SRC/openSUSE:Factory/.python-fastcluster.new.1892/python-fastcluster.changes
  2022-01-15 20:05:40.533781257 +0100
@@ -1,0 +2,8 @@
+Sat Jan 15 16:10:44 UTC 2022 - Dirk M??ller 
+
+- update to 1.2.4:
+  * Documentation update.
+  * Fixed #pragma in fastcluster.cpp.
+  * Fixed NumPy versions in Travis builds.
+
+---

Old:

  fastcluster-1.2.0.tar.gz

New:

  fastcluster-1.2.4.tar.gz



Other differences:
--
++ python-fastcluster.spec ++
--- /var/tmp/diff_new_pack.XpukF4/_old  2022-01-15 20:05:41.005781625 +0100
+++ /var/tmp/diff_new_pack.XpukF4/_new  2022-01-15 20:05:41.009781628 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package python-fastcluster
 #
-# Copyright (c) 2021 SUSE LLC
+# Copyright (c) 2022 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -20,7 +20,7 @@
 %define skip_python36 1
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 Name:   python-fastcluster
-Version:1.2.0
+Version:1.2.4
 Release:0
 Summary:Hierarchical clustering routines for Python
 License:BSD-2-Clause

++ fastcluster-1.2.0.tar.gz -> fastcluster-1.2.4.tar.gz ++
 1905 lines of diff (skipped)


commit python-fastcluster for openSUSE:Factory

2021-06-01 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package python-fastcluster for 
openSUSE:Factory checked in at 2021-06-01 10:39:17

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


Package is "python-fastcluster"

Tue Jun  1 10:39:17 2021 rev:9 rq:896226 version:1.2.0

Changes:

--- /work/SRC/openSUSE:Factory/python-fastcluster/python-fastcluster.changes
2021-05-23 00:06:20.734556114 +0200
+++ 
/work/SRC/openSUSE:Factory/.python-fastcluster.new.1898/python-fastcluster.changes
  2021-06-01 10:40:52.709162070 +0200
@@ -1,0 +2,8 @@
+Sun May 23 21:17:09 UTC 2021 - Matej Cepl 
+
+- Update to 1.2.0:
+  - Dropped support for Python 2.
+  - Python interface: Updated definition of the Yule distance
+function, following a change in SciPy 1.6.3.
+
+---

Old:

  fastcluster-1.1.28.tar.gz
  skip_error_test.patch

New:

  fastcluster-1.2.0.tar.gz



Other differences:
--
++ python-fastcluster.spec ++
--- /var/tmp/diff_new_pack.brK5CS/_old  2021-06-01 10:40:53.181162873 +0200
+++ /var/tmp/diff_new_pack.brK5CS/_new  2021-06-01 10:40:53.185162880 +0200
@@ -16,19 +16,17 @@
 #
 
 
+%define skip_python2 1
 %define skip_python36 1
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 Name:   python-fastcluster
-Version:1.1.28
+Version:1.2.0
 Release:0
 Summary:Hierarchical clustering routines for Python
 License:BSD-2-Clause
 Group:  Development/Languages/Python
 URL:https://github.com/dmuellner/fastcluster
 Source: 
https://files.pythonhosted.org/packages/source/f/fastcluster/fastcluster-%{version}.tar.gz
-# PATCH-FIX-UPSTREAM skip_error_test.patch gh#dmuellner/fastcluster#21 
mc...@suse.com
-# Skip over erroring test
-Patch0: skip_error_test.patch
 BuildRequires:  %{python_module devel}
 BuildRequires:  %{python_module numpy-devel >= 1.9}
 BuildRequires:  %{python_module pytest}

++ fastcluster-1.1.28.tar.gz -> fastcluster-1.2.0.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/fastcluster-1.1.28/NEWS.txt 
new/fastcluster-1.2.0/NEWS.txt
--- old/fastcluster-1.1.28/NEWS.txt 2021-02-03 21:22:14.0 +0100
+++ new/fastcluster-1.2.0/NEWS.txt  2021-05-23 11:46:18.0 +0200
@@ -218,3 +218,9 @@
 Version 1.1.28, 02/03/2021
 
 ??? Replace deprecated ???numpy.bool??? and ???numpy.int??? by ???bool??? and 
???int???.
+
+Version 1.2.0, 05/23/2021
+
+??? Dropped support for Python 2.
+??? Python interface: Updated definition of the Yule distance function, 
following
+  a change in SciPy 1.6.3.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/fastcluster-1.1.28/PKG-INFO 
new/fastcluster-1.2.0/PKG-INFO
--- old/fastcluster-1.1.28/PKG-INFO 2021-02-03 21:31:02.764438600 +0100
+++ new/fastcluster-1.2.0/PKG-INFO  2021-05-23 14:29:16.472244000 +0200
@@ -1,6 +1,6 @@
 Metadata-Version: 2.1
 Name: fastcluster
-Version: 1.1.28
+Version: 1.2.0
 Summary: Fast hierarchical clustering routines for R and Python.
 Home-page: http://danifold.net
 Author: Daniel M??llner
@@ -61,7 +61,6 @@
 Classifier: Topic :: Scientific/Engineering :: Bio-Informatics
 Classifier: Topic :: Scientific/Engineering :: Mathematics
 Classifier: Programming Language :: Python
-Classifier: Programming Language :: Python :: 2
 Classifier: Programming Language :: Python :: 3
 Classifier: Programming Language :: C++
 Classifier: Operating System :: OS Independent
@@ -71,5 +70,6 @@
 Classifier: Development Status :: 5 - Production/Stable
 Requires: numpy
 Provides: fastcluster
+Requires-Python: >=3
 Description-Content-Type: text/x-rst
 Provides-Extra: test
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/fastcluster-1.1.28/docs/fastcluster.Rtex 
new/fastcluster-1.2.0/docs/fastcluster.Rtex
--- old/fastcluster-1.1.28/docs/fastcluster.Rtex2021-02-03 
21:22:41.0 +0100
+++ new/fastcluster-1.2.0/docs/fastcluster.Rtex 2021-05-23 11:28:49.0 
+0200
@@ -1,5 +1,5 @@
-\def\fastclusterversion{1.1.28}
-\documentclass[fontsize=10pt,paper=letter,BCOR=-6mm]{scrartcl}
+\def\fastclusterversion{1.2.0}
+\documentclass[fontsize=10pt,paper=letter,BCOR=-6mm,DIV=8]{scrartcl}
 \usepackage[utf8]{inputenc}
 \usepackage{lmodern}
 \normalfont
@@ -94,7 +94,7 @@
 %\VignetteIndexEntry{User's manual}
 \title{The \textit{fastcluster} package: User's manual}
 \author{\href{http://danifold.net}{Daniel M??llner}}
-\date{February 3, 2021}
+\date{May 23, 

commit python-fastcluster for openSUSE:Factory

2021-05-22 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package python-fastcluster for 
openSUSE:Factory checked in at 2021-05-23 00:06:14

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


Package is "python-fastcluster"

Sun May 23 00:06:14 2021 rev:8 rq:894946 version:1.1.28

Changes:

--- /work/SRC/openSUSE:Factory/python-fastcluster/python-fastcluster.changes
2021-01-19 16:06:16.759748813 +0100
+++ 
/work/SRC/openSUSE:Factory/.python-fastcluster.new.2988/python-fastcluster.changes
  2021-05-23 00:06:20.734556114 +0200
@@ -1,0 +2,14 @@
+Sat May 22 11:40:08 UTC 2021 - Matej Cepl 
+
+- Add skip_error_test.patch removing the erroring test_vector
+  test (gh#dmuellner/fastcluster#21).
+
+---
+Fri May 14 15:05:07 UTC 2021 - Matej Cepl 
+
+- Update to 1.1.28:
+  - Replace deprecated ???numpy.bool??? and ???numpy.int??? by
+???bool??? and ???int???.
+  - Updated NumPy dependency for Python 3.9.
+
+---

Old:

  fastcluster-1.1.26.tar.gz

New:

  fastcluster-1.1.28.tar.gz
  skip_error_test.patch



Other differences:
--
++ python-fastcluster.spec ++
--- /var/tmp/diff_new_pack.hiq7I3/_old  2021-05-23 00:06:21.190553688 +0200
+++ /var/tmp/diff_new_pack.hiq7I3/_new  2021-05-23 00:06:21.190553688 +0200
@@ -19,16 +19,19 @@
 %define skip_python36 1
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 Name:   python-fastcluster
-Version:1.1.26
+Version:1.1.28
 Release:0
 Summary:Hierarchical clustering routines for Python
 License:BSD-2-Clause
 Group:  Development/Languages/Python
 URL:https://github.com/dmuellner/fastcluster
 Source: 
https://files.pythonhosted.org/packages/source/f/fastcluster/fastcluster-%{version}.tar.gz
+# PATCH-FIX-UPSTREAM skip_error_test.patch gh#dmuellner/fastcluster#21 
mc...@suse.com
+# Skip over erroring test
+Patch0: skip_error_test.patch
 BuildRequires:  %{python_module devel}
-BuildRequires:  %{python_module nose}
 BuildRequires:  %{python_module numpy-devel >= 1.9}
+BuildRequires:  %{python_module pytest}
 BuildRequires:  %{python_module scipy}
 BuildRequires:  %{python_module setuptools}
 BuildRequires:  fdupes
@@ -62,7 +65,8 @@
 Documentation and help files for %{name}.
 
 %prep
-%setup -q -n fastcluster-%{version}
+%autosetup -p1 -n fastcluster-%{version}
+
 sed -i 's/\r$//' CITATION.txt
 sed -i 's/\r$//' NEWS.txt
 sed -i 's/\r$//' README.txt
@@ -77,7 +81,7 @@
 
 %check
 export LANG=en_US.UTF-8
-%python_exec setup.py test
+%pyunittest_arch -v tests
 
 %files %{python_files}
 %license COPYING.txt

++ fastcluster-1.1.26.tar.gz -> fastcluster-1.1.28.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/fastcluster-1.1.26/NEWS.txt 
new/fastcluster-1.1.28/NEWS.txt
--- old/fastcluster-1.1.26/NEWS.txt 2019-12-30 22:34:30.0 +0100
+++ new/fastcluster-1.1.28/NEWS.txt 2021-02-03 21:22:14.0 +0100
@@ -210,3 +210,11 @@
 Version 1.1.26, 12/30/2019
 
 ??? Small updates for Python 3.8.
+
+Version 1.1.27, 01/20/2021
+
+??? Updated NumPy dependency for Python 3.9.
+
+Version 1.1.28, 02/03/2021
+
+??? Replace deprecated ???numpy.bool??? and ???numpy.int??? by ???bool??? and 
???int???.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/fastcluster-1.1.26/PKG-INFO 
new/fastcluster-1.1.28/PKG-INFO
--- old/fastcluster-1.1.26/PKG-INFO 2019-12-31 15:06:06.206344600 +0100
+++ new/fastcluster-1.1.28/PKG-INFO 2021-02-03 21:31:02.764438600 +0100
@@ -1,6 +1,6 @@
 Metadata-Version: 2.1
 Name: fastcluster
-Version: 1.1.26
+Version: 1.1.28
 Summary: Fast hierarchical clustering routines for R and Python.
 Home-page: http://danifold.net
 Author: Daniel M??llner
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/fastcluster-1.1.26/docs/fastcluster.Rtex 
new/fastcluster-1.1.28/docs/fastcluster.Rtex
--- old/fastcluster-1.1.26/docs/fastcluster.Rtex2019-12-30 
22:35:50.0 +0100
+++ new/fastcluster-1.1.28/docs/fastcluster.Rtex2021-02-03 
21:22:41.0 +0100
@@ -1,4 +1,4 @@
-\def\fastclusterversion{1.1.26}
+\def\fastclusterversion{1.1.28}
 \documentclass[fontsize=10pt,paper=letter,BCOR=-6mm]{scrartcl}
 \usepackage[utf8]{inputenc}
 \usepackage{lmodern}
@@ -94,7 +94,7 @@
 %\VignetteIndexEntry{User's manual}
 \title{The \textit{fastcluster} package: User's manual}
 \author{\href{http://danifold.net}{Daniel 

commit python-fastcluster for openSUSE:Factory

2021-01-19 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package python-fastcluster for 
openSUSE:Factory checked in at 2021-01-19 16:06:15

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


Package is "python-fastcluster"

Tue Jan 19 16:06:15 2021 rev:7 rq:864327 version:1.1.26

Changes:

--- /work/SRC/openSUSE:Factory/python-fastcluster/python-fastcluster.changes
2020-02-03 11:12:57.209833869 +0100
+++ 
/work/SRC/openSUSE:Factory/.python-fastcluster.new.28504/python-fastcluster.changes
 2021-01-19 16:06:16.759748813 +0100
@@ -1,0 +2,5 @@
+Tue Jan 19 10:52:03 UTC 2021 - andy great 
+
+- Disable build for python36 because scipy dependency.
+
+---



Other differences:
--
++ python-fastcluster.spec ++
--- /var/tmp/diff_new_pack.0naIm3/_old  2021-01-19 16:06:17.455749859 +0100
+++ /var/tmp/diff_new_pack.0naIm3/_new  2021-01-19 16:06:17.459749865 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package python-fastcluster
 #
-# Copyright (c) 2020 SUSE LLC
+# Copyright (c) 2021 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -16,6 +16,7 @@
 #
 
 
+%define skip_python36 1
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 Name:   python-fastcluster
 Version:1.1.26