Hello community,

here is the log from the commit of package python-pyDOE2 for openSUSE:Factory 
checked in at 2019-07-23 22:56:24
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-pyDOE2 (Old)
 and      /work/SRC/openSUSE:Factory/.python-pyDOE2.new.4126 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "python-pyDOE2"

Tue Jul 23 22:56:24 2019 rev:3 rq:718000 version:1.2.0

Changes:
--------
--- /work/SRC/openSUSE:Factory/python-pyDOE2/python-pyDOE2.changes      
2019-01-24 14:03:54.832017310 +0100
+++ /work/SRC/openSUSE:Factory/.python-pyDOE2.new.4126/python-pyDOE2.changes    
2019-07-23 22:56:25.466170253 +0200
@@ -1,0 +2,6 @@
+Tue Jul 23 20:22:11 UTC 2019 - Todd R <[email protected]>
+
+- Update to version 1.2.0
+  * BUG make sure to compute the correlation coeff properly
+
+-------------------------------------------------------------------

Old:
----
  pyDOE2-1.1.2.tar.gz

New:
----
  pyDOE2-1.2.0.tar.gz

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ python-pyDOE2.spec ++++++
--- /var/tmp/diff_new_pack.v81dDt/_old  2019-07-23 22:56:26.990169391 +0200
+++ /var/tmp/diff_new_pack.v81dDt/_new  2019-07-23 22:56:27.006169382 +0200
@@ -18,18 +18,16 @@
 
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 Name:           python-pyDOE2
-Version:        1.1.2
+Version:        1.2.0
 Release:        0
 Summary:        Design of experiments for Python
 License:        BSD-3-Clause
 Group:          Development/Languages/Python
 Url:            https://github.com/clicumu/pyDOE2
 Source:         
https://files.pythonhosted.org/packages/source/p/pyDOE2/pyDOE2-%{version}.tar.gz
-BuildRequires:  %{python_module devel}
 BuildRequires:  %{python_module setuptools}
 BuildRequires:  fdupes
 BuildRequires:  python-rpm-macros
-BuildRequires:  unzip
 # SECTION test requirements
 BuildRequires:  %{python_module numpy}
 BuildRequires:  %{python_module scipy}

++++++ pyDOE2-1.1.2.tar.gz -> pyDOE2-1.2.0.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/pyDOE2-1.1.2/PKG-INFO new/pyDOE2-1.2.0/PKG-INFO
--- old/pyDOE2-1.1.2/PKG-INFO   2018-11-13 09:04:44.000000000 +0100
+++ new/pyDOE2-1.2.0/PKG-INFO   2019-04-01 09:42:12.000000000 +0200
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: pyDOE2
-Version: 1.1.2
+Version: 1.2.0
 Summary: Design of experiments for Python
 Home-page: https://github.com/clicumu/pyDOE2
 Author: Rickard Sjoegren
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/pyDOE2-1.1.2/pyDOE2/doe_lhs.py 
new/pyDOE2-1.2.0/pyDOE2/doe_lhs.py
--- old/pyDOE2-1.1.2/pyDOE2/doe_lhs.py  2018-01-31 15:45:46.000000000 +0100
+++ new/pyDOE2-1.2.0/pyDOE2/doe_lhs.py  2019-04-01 09:30:06.000000000 +0200
@@ -201,7 +201,7 @@
     for i in range(iterations):
         # Generate a random LHS
         Hcandidate = _lhsclassic(n, samples, randomstate)
-        R = np.corrcoef(Hcandidate)
+        R = np.corrcoef(Hcandidate.T)
         if np.max(np.abs(R[R!=1]))<mincorr:
             mincorr = np.max(np.abs(R-np.eye(R.shape[0])))
             H = Hcandidate.copy()
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/pyDOE2-1.1.2/pyDOE2.egg-info/PKG-INFO 
new/pyDOE2-1.2.0/pyDOE2.egg-info/PKG-INFO
--- old/pyDOE2-1.1.2/pyDOE2.egg-info/PKG-INFO   2018-11-13 09:04:44.000000000 
+0100
+++ new/pyDOE2-1.2.0/pyDOE2.egg-info/PKG-INFO   2019-04-01 09:42:10.000000000 
+0200
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: pyDOE2
-Version: 1.1.2
+Version: 1.2.0
 Summary: Design of experiments for Python
 Home-page: https://github.com/clicumu/pyDOE2
 Author: Rickard Sjoegren
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/pyDOE2-1.1.2/setup.cfg new/pyDOE2-1.2.0/setup.cfg
--- old/pyDOE2-1.1.2/setup.cfg  2018-11-13 09:04:44.000000000 +0100
+++ new/pyDOE2-1.2.0/setup.cfg  2019-04-01 09:42:12.000000000 +0200
@@ -1,5 +1,4 @@
 [egg_info]
 tag_build = 
 tag_date = 0
-tag_svn_revision = 0
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/pyDOE2-1.1.2/setup.py new/pyDOE2-1.2.0/setup.py
--- old/pyDOE2-1.1.2/setup.py   2018-11-13 09:02:30.000000000 +0100
+++ new/pyDOE2-1.2.0/setup.py   2019-04-01 09:38:24.000000000 +0200
@@ -7,7 +7,7 @@
 
 setup(
     name='pyDOE2',
-    version="1.1.2",
+    version="1.2.0",
     author='Rickard Sjoegren',
     author_email='[email protected]',
     description='Design of experiments for Python',


Reply via email to