Hello community, here is the log from the commit of package python-metaextract for openSUSE:Factory checked in at 2019-08-08 14:23:56 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/python-metaextract (Old) and /work/SRC/openSUSE:Factory/.python-metaextract.new.9556 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-metaextract" Thu Aug 8 14:23:56 2019 rev:13 rq:721692 version:1.0.6 Changes: -------- --- /work/SRC/openSUSE:Factory/python-metaextract/python-metaextract.changes 2019-06-24 21:54:15.904147779 +0200 +++ /work/SRC/openSUSE:Factory/.python-metaextract.new.9556/python-metaextract.changes 2019-08-08 14:23:56.864344082 +0200 @@ -1,0 +2,13 @@ +Thu Aug 8 08:37:50 UTC 2019 - Thomas Bechtold <[email protected]> + +- Capitalize summary to make rpmlint happy + +------------------------------------------------------------------- +Thu Aug 8 08:35:17 UTC 2019 - Thomas Bechtold <[email protected]> + +- update to 1.0.6: + * Switch to python 3.7 + * travis: Use py36 for pep8 tox env + * Fix tests when using pytest >= 5 + +------------------------------------------------------------------- Old: ---- 1.0.5.tar.gz New: ---- 1.0.6.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ python-metaextract.spec ++++++ --- /var/tmp/diff_new_pack.1QTL7O/_old 2019-08-08 14:23:57.320344012 +0200 +++ /var/tmp/diff_new_pack.1QTL7O/_new 2019-08-08 14:23:57.324344012 +0200 @@ -18,9 +18,9 @@ %{?!python_module:%define python_module() python-%{**} python3-%{**}} Name: python-metaextract -Version: 1.0.5 +Version: 1.0.6 Release: 0 -Summary: get metadata for python modules +Summary: Get metadata for python modules License: Apache-2.0 Group: Development/Languages/Python Url: http://github.com/toabctl/metaextract ++++++ 1.0.5.tar.gz -> 1.0.6.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/metaextract-1.0.5/.travis.yml new/metaextract-1.0.6/.travis.yml --- old/metaextract-1.0.5/.travis.yml 2018-11-09 12:07:20.000000000 +0100 +++ new/metaextract-1.0.6/.travis.yml 2019-08-08 10:30:46.000000000 +0200 @@ -2,12 +2,12 @@ language: python matrix: include: - - python: 2.7 + - python: 3.7 env: TOX_ENV=pep8 - python: 2.7 env: TOX_ENV=py27 - - python: 3.6 - env: TOX_ENV=py36 + - python: 3.7 + env: TOX_ENV=py37 install: - pip install tox script: diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/metaextract-1.0.5/metaextract/__init__.py new/metaextract-1.0.6/metaextract/__init__.py --- old/metaextract-1.0.5/metaextract/__init__.py 2018-11-09 12:07:20.000000000 +0100 +++ new/metaextract-1.0.6/metaextract/__init__.py 2019-08-08 10:30:46.000000000 +0200 @@ -15,4 +15,4 @@ # See the License for the specific language governing permissions and # limitations under the License. -__version__ = "1.0.5" +__version__ = "1.0.6" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/metaextract-1.0.5/metaextract/tests/test_metaextract.py new/metaextract-1.0.6/metaextract/tests/test_metaextract.py --- old/metaextract-1.0.5/metaextract/tests/test_metaextract.py 2018-11-09 12:07:20.000000000 +0100 +++ new/metaextract-1.0.6/metaextract/tests/test_metaextract.py 2019-08-08 10:30:46.000000000 +0200 @@ -73,7 +73,7 @@ with pytest.raises(Exception) as e_info: with meta_utils._extract_to_tempdir("foobar"): pass - assert "foobar" in str(e_info) + assert "foobar" in str(e_info.value) def test__extract_to_tempdir_tar_archive(self, tararchive): tarball_name, tarball_files = tararchive @@ -139,7 +139,7 @@ def test_no_setup_py(self, tmpdir): with pytest.raises(Exception) as e_info: meta_utils._setup_py_run_from_dir(tmpdir.strpath, sys.executable) - assert tmpdir.strpath in str(e_info) + assert tmpdir.strpath in str(e_info.value) @pytest.mark.parametrize("fixture_name,expected_data", [ ( diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/metaextract-1.0.5/tox.ini new/metaextract-1.0.6/tox.ini --- old/metaextract-1.0.5/tox.ini 2018-11-09 12:07:20.000000000 +0100 +++ new/metaextract-1.0.6/tox.ini 2019-08-08 10:30:46.000000000 +0200 @@ -1,5 +1,5 @@ [tox] -envlist = py27,py36,pep8 +envlist = py27,py37,pep8 minversion = 1.6 skipsdist = True
