Hello community, here is the log from the commit of package python-nose2 for openSUSE:Factory checked in at 2019-05-15 12:34:11 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/python-nose2 (Old) and /work/SRC/openSUSE:Factory/.python-nose2.new.5148 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-nose2" Wed May 15 12:34:11 2019 rev:4 rq:702904 version:0.9.1 Changes: -------- --- /work/SRC/openSUSE:Factory/python-nose2/python-nose2.changes 2019-04-08 20:53:47.442579569 +0200 +++ /work/SRC/openSUSE:Factory/.python-nose2.new.5148/python-nose2.changes 2019-05-15 12:34:12.652565544 +0200 @@ -1,0 +2,6 @@ +Tue May 14 17:02:07 UTC 2019 - Tomáš Chvátal <[email protected]> + +- Add patch to fix build with new mock versions: + * fix-mock-dep.patch + +------------------------------------------------------------------- New: ---- fix-mock-dep.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ python-nose2.spec ++++++ --- /var/tmp/diff_new_pack.QBgHjZ/_old 2019-05-15 12:34:13.348563540 +0200 +++ /var/tmp/diff_new_pack.QBgHjZ/_new 2019-05-15 12:34:13.352563529 +0200 @@ -26,6 +26,7 @@ URL: https://github.com/nose-devs/nose2 Source: https://files.pythonhosted.org/packages/source/n/nose2/nose2-%{version}.tar.gz Patch0: remove_unittest2.patch +Patch1: fix-mock-dep.patch BuildRequires: %{python_module cov-core >= 1.12} BuildRequires: %{python_module mock} BuildRequires: %{python_module setuptools} ++++++ fix-mock-dep.patch ++++++ Index: nose2-0.9.1/setup.py =================================================================== --- nose2-0.9.1.orig/setup.py +++ nose2-0.9.1/setup.py @@ -32,7 +32,7 @@ setup( # mock on py2, py3.4 and py3.5 # not just py2: py3 versions of mock don't all have the same # interface and this can cause issues - 'mock==2.0.0;python_version<"3.6"', + 'mock>=2.0.0;python_version<"3.6"', ], extras_require={ "coverage_plugin": ["coverage>=4.4.1"],
