Hello community,

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

Package is "python-pyDOE2"

Sun Jul 28 10:22:12 2019 rev:4 rq:718979 version:1.2.1

Changes:
--------
--- /work/SRC/openSUSE:Factory/python-pyDOE2/python-pyDOE2.changes      
2019-07-23 22:56:25.466170253 +0200
+++ /work/SRC/openSUSE:Factory/.python-pyDOE2.new.4126/python-pyDOE2.changes    
2019-07-28 10:22:13.108568496 +0200
@@ -1,0 +2,6 @@
+Fri Jul 26 16:47:18 UTC 2019 - Todd R <[email protected]>
+
+- Update to version 1.2.1
+  * Update doe_factorial.fractfact
+
+-------------------------------------------------------------------

Old:
----
  pyDOE2-1.2.0.tar.gz

New:
----
  pyDOE2-1.2.1.tar.gz

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

Other differences:
------------------
++++++ python-pyDOE2.spec ++++++
--- /var/tmp/diff_new_pack.0h2URx/_old  2019-07-28 10:22:14.888568455 +0200
+++ /var/tmp/diff_new_pack.0h2URx/_new  2019-07-28 10:22:14.888568455 +0200
@@ -18,7 +18,7 @@
 
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 Name:           python-pyDOE2
-Version:        1.2.0
+Version:        1.2.1
 Release:        0
 Summary:        Design of experiments for Python
 License:        BSD-3-Clause

++++++ pyDOE2-1.2.0.tar.gz -> pyDOE2-1.2.1.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/pyDOE2-1.2.0/PKG-INFO new/pyDOE2-1.2.1/PKG-INFO
--- old/pyDOE2-1.2.0/PKG-INFO   2019-04-01 09:42:12.000000000 +0200
+++ new/pyDOE2-1.2.1/PKG-INFO   2019-07-24 13:30:26.000000000 +0200
@@ -1,6 +1,6 @@
-Metadata-Version: 1.1
+Metadata-Version: 2.1
 Name: pyDOE2
-Version: 1.2.0
+Version: 1.2.1
 Summary: Design of experiments for Python
 Home-page: https://github.com/clicumu/pyDOE2
 Author: Rickard Sjoegren
@@ -151,3 +151,4 @@
 Classifier: Topic :: Software Development :: Libraries
 Classifier: Topic :: Software Development :: Libraries :: Python Modules
 Classifier: Topic :: Utilities
+Description-Content-Type: text/markdown
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/pyDOE2-1.2.0/pyDOE2/doe_factorial.py 
new/pyDOE2-1.2.1/pyDOE2/doe_factorial.py
--- old/pyDOE2-1.2.0/pyDOE2/doe_factorial.py    2019-04-01 09:30:06.000000000 
+0200
+++ new/pyDOE2-1.2.1/pyDOE2/doe_factorial.py    2019-07-24 13:19:19.000000000 
+0200
@@ -198,7 +198,7 @@
 
     """
     # Recognize letters and combinations
-    A = [item for item in re.split('\-?\s?\+?', gen) if item]  # remove empty 
strings
+    A = [item for item in re.split('\-|\s|\+', gen) if item]  # remove empty 
strings
     C = [len(item) for item in A]
 
     # Indices of single letters (main factors)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/pyDOE2-1.2.0/pyDOE2.egg-info/PKG-INFO 
new/pyDOE2-1.2.1/pyDOE2.egg-info/PKG-INFO
--- old/pyDOE2-1.2.0/pyDOE2.egg-info/PKG-INFO   2019-04-01 09:42:10.000000000 
+0200
+++ new/pyDOE2-1.2.1/pyDOE2.egg-info/PKG-INFO   2019-07-24 13:30:26.000000000 
+0200
@@ -1,6 +1,6 @@
-Metadata-Version: 1.1
+Metadata-Version: 2.1
 Name: pyDOE2
-Version: 1.2.0
+Version: 1.2.1
 Summary: Design of experiments for Python
 Home-page: https://github.com/clicumu/pyDOE2
 Author: Rickard Sjoegren
@@ -151,3 +151,4 @@
 Classifier: Topic :: Software Development :: Libraries
 Classifier: Topic :: Software Development :: Libraries :: Python Modules
 Classifier: Topic :: Utilities
+Description-Content-Type: text/markdown
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/pyDOE2-1.2.0/setup.py new/pyDOE2-1.2.1/setup.py
--- old/pyDOE2-1.2.0/setup.py   2019-04-01 09:38:24.000000000 +0200
+++ new/pyDOE2-1.2.1/setup.py   2019-07-24 13:30:10.000000000 +0200
@@ -7,13 +7,14 @@
 
 setup(
     name='pyDOE2',
-    version="1.2.0",
+    version="1.2.1",
     author='Rickard Sjoegren',
     author_email='[email protected]',
     description='Design of experiments for Python',
     url='https://github.com/clicumu/pyDOE2',
     license='BSD License (3-Clause)',
     long_description=read('README.md'),
+    long_description_content_type='text/markdown',
     packages=['pyDOE2'],
     install_requires=['numpy', 'scipy'],
     keywords=[


Reply via email to