Script 'mail_helper' called by obssrc
Hello community,
here is the log from the commit of package python-expiringdict for
openSUSE:Factory checked in at 2022-01-17 22:34:04
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-expiringdict (Old)
and /work/SRC/openSUSE:Factory/.python-expiringdict.new.1892 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-expiringdict"
Mon Jan 17 22:34:04 2022 rev:3 rq:946885 version:1.2.1
Changes:
--------
--- /work/SRC/openSUSE:Factory/python-expiringdict/python-expiringdict.changes
2021-12-07 00:00:59.600222530 +0100
+++
/work/SRC/openSUSE:Factory/.python-expiringdict.new.1892/python-expiringdict.changes
2022-01-17 22:34:46.966273009 +0100
@@ -1,0 +2,6 @@
+Sun Jan 16 16:02:53 UTC 2022 - Benjamin Greiner <[email protected]>
+
+- Don't check coverage
+- Extend remove-nose.patch to also remove mock
+
+-------------------------------------------------------------------
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ python-expiringdict.spec ++++++
--- /var/tmp/diff_new_pack.IJ4diK/_old 2022-01-17 22:34:47.486273353 +0100
+++ /var/tmp/diff_new_pack.IJ4diK/_new 2022-01-17 22:34:47.490273356 +0100
@@ -1,7 +1,7 @@
#
# spec file for package python-expiringdict
#
-# Copyright (c) 2021 SUSE LLC
+# Copyright (c) 2022 SUSE LLC
# Copyright (c) 2021, Martin Hauke <[email protected]>
#
# All modifications and additions to the file contributed by third parties
@@ -17,7 +17,8 @@
#
-%{?!python_module:%define python_module() python-%{**} python3-%{**}}
+%{?!python_module:%define python_module() python3-%{**}}
+%define skip_python2 1
Name: python-expiringdict
Version: 1.2.1
Release: 0
@@ -34,9 +35,6 @@
Requires: python-typing
BuildArch: noarch
# SECTION test requirements
-BuildRequires: %{python_module coverage}
-BuildRequires: %{python_module coveralls}
-BuildRequires: %{python_module mock}
BuildRequires: %{python_module pytest}
# /SECTION
%python_subpackages
++++++ remove-nose.patch ++++++
--- /var/tmp/diff_new_pack.IJ4diK/_old 2022-01-17 22:34:47.518273374 +0100
+++ /var/tmp/diff_new_pack.IJ4diK/_new 2022-01-17 22:34:47.518273374 +0100
@@ -53,8 +53,9 @@
@@ -1,38 +1,40 @@
from time import sleep
- from mock import Mock, patch
+-from mock import Mock, patch
-from nose.tools import assert_raises, eq_, ok_
++from unittest.mock import Mock, patch
from expiringdict import ExpiringDict