Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package python-pyaml for openSUSE:Factory 
checked in at 2021-06-01 10:34:13
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-pyaml (Old)
 and      /work/SRC/openSUSE:Factory/.python-pyaml.new.1898 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "python-pyaml"

Tue Jun  1 10:34:13 2021 rev:6 rq:895718 version:20.4.0

Changes:
--------
--- /work/SRC/openSUSE:Factory/python-pyaml/python-pyaml.changes        
2020-03-27 00:27:23.804320608 +0100
+++ /work/SRC/openSUSE:Factory/.python-pyaml.new.1898/python-pyaml.changes      
2021-06-01 10:34:23.328499140 +0200
@@ -1,0 +2,7 @@
+Thu May 27 08:41:55 UTC 2021 - [email protected]
+
+- version update to 20.4.0
+  * no upstream changelog found
+- %check: use %pytest rpm macro
+
+-------------------------------------------------------------------

Old:
----
  pyaml-20.3.1.tar.gz

New:
----
  pyaml-20.4.0.tar.gz

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

Other differences:
------------------
++++++ python-pyaml.spec ++++++
--- /var/tmp/diff_new_pack.0wsBhW/_old  2021-06-01 10:34:23.788499924 +0200
+++ /var/tmp/diff_new_pack.0wsBhW/_new  2021-06-01 10:34:23.792499931 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package python-pyaml
 #
-# 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
@@ -18,7 +18,7 @@
 
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 Name:           python-pyaml
-Version:        20.3.1
+Version:        20.4.0
 Release:        0
 Summary:        Python module to produce formatted YAML-serialized data
 License:        WTFPL
@@ -27,6 +27,7 @@
 Source:         
https://files.pythonhosted.org/packages/source/p/pyaml/pyaml-%{version}.tar.gz
 BuildRequires:  %{python_module PyYAML}
 BuildRequires:  %{python_module Unidecode}
+BuildRequires:  %{python_module pytest}
 BuildRequires:  %{python_module setuptools}
 BuildRequires:  fdupes
 BuildRequires:  python-rpm-macros
@@ -49,7 +50,7 @@
 %python_expand %fdupes %{buildroot}%{$python_sitelib}
 
 %check
-%python_exec setup.py test
+%pytest pyaml/tests/dump.py
 
 %files %{python_files}
 %license COPYING

++++++ pyaml-20.3.1.tar.gz -> pyaml-20.4.0.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/pyaml-20.3.1/PKG-INFO new/pyaml-20.4.0/PKG-INFO
--- old/pyaml-20.3.1/PKG-INFO   2020-03-09 21:21:37.987214600 +0100
+++ new/pyaml-20.4.0/PKG-INFO   2020-04-02 11:59:38.546060000 +0200
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: pyaml
-Version: 20.3.1
+Version: 20.4.0
 Summary: PyYAML-based module to produce pretty and readable YAML-serialized 
data
 Home-page: https://github.com/mk-fg/pretty-yaml
 Author: Mike Kazantsev
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/pyaml-20.3.1/pyaml/__init__.py 
new/pyaml-20.4.0/pyaml/__init__.py
--- old/pyaml-20.3.1/pyaml/__init__.py  2020-03-09 21:17:55.000000000 +0100
+++ new/pyaml-20.4.0/pyaml/__init__.py  2020-04-02 11:58:50.000000000 +0200
@@ -132,7 +132,7 @@
                style = dumper.pyaml_string_val_style
                if not style:
                        style = 'plain'
-                       if '\n' in data or not data or data == '-' or data[0] 
in '!&*[':
+                       if '\n' in data or not data or data == '-' or data[0] 
in '!&*[' or '#' in data:
                                style = 'literal'
                                if '\n' in data[:-1]:
                                        for line in data.splitlines():
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/pyaml-20.3.1/pyaml.egg-info/PKG-INFO 
new/pyaml-20.4.0/pyaml.egg-info/PKG-INFO
--- old/pyaml-20.3.1/pyaml.egg-info/PKG-INFO    2020-03-09 21:21:37.000000000 
+0100
+++ new/pyaml-20.4.0/pyaml.egg-info/PKG-INFO    2020-04-02 11:59:38.000000000 
+0200
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: pyaml
-Version: 20.3.1
+Version: 20.4.0
 Summary: PyYAML-based module to produce pretty and readable YAML-serialized 
data
 Home-page: https://github.com/mk-fg/pretty-yaml
 Author: Mike Kazantsev
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/pyaml-20.3.1/setup.py new/pyaml-20.4.0/setup.py
--- old/pyaml-20.3.1/setup.py   2020-03-09 21:20:24.000000000 +0100
+++ new/pyaml-20.4.0/setup.py   2020-04-02 11:59:02.000000000 +0200
@@ -12,7 +12,7 @@
 setup(
 
        name = 'pyaml',
-       version = '20.3.1',
+       version = '20.4.0',
        author = 'Mike Kazantsev',
        author_email = '[email protected]',
        license = 'WTFPL',

Reply via email to