Hello community,
here is the log from the commit of package python-pytest-lazy-fixture for
openSUSE:Factory checked in at 2019-12-04 13:56:22
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-pytest-lazy-fixture (Old)
and /work/SRC/openSUSE:Factory/.python-pytest-lazy-fixture.new.4691 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-pytest-lazy-fixture"
Wed Dec 4 13:56:22 2019 rev:3 rq:753970 version:0.6.2
Changes:
--------
---
/work/SRC/openSUSE:Factory/python-pytest-lazy-fixture/python-pytest-lazy-fixture.changes
2019-11-06 14:06:38.660819842 +0100
+++
/work/SRC/openSUSE:Factory/.python-pytest-lazy-fixture.new.4691/python-pytest-lazy-fixture.changes
2019-12-04 14:21:13.770481099 +0100
@@ -1,0 +2,6 @@
+Wed Dec 4 12:08:19 UTC 2019 - Tomáš Chvátal <[email protected]>
+
+- Update to 0.6.2:
+ * minor fixes
+
+-------------------------------------------------------------------
Old:
----
pytest-lazy-fixture-0.6.1.tar.gz
New:
----
pytest-lazy-fixture-0.6.2.tar.gz
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ python-pytest-lazy-fixture.spec ++++++
--- /var/tmp/diff_new_pack.fyZDec/_old 2019-12-04 14:21:14.130481402 +0100
+++ /var/tmp/diff_new_pack.fyZDec/_new 2019-12-04 14:21:14.138481409 +0100
@@ -1,7 +1,7 @@
#
# spec file for package python-pytest-lazy-fixture
#
-# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2019 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-pytest-lazy-fixture
-Version: 0.6.1
+Version: 0.6.2
Release: 0
Summary: Helper to use fixtures in pytest.markparametrize
License: MIT
++++++ pytest-lazy-fixture-0.6.1.tar.gz -> pytest-lazy-fixture-0.6.2.tar.gz
++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/pytest-lazy-fixture-0.6.1/PKG-INFO
new/pytest-lazy-fixture-0.6.2/PKG-INFO
--- old/pytest-lazy-fixture-0.6.1/PKG-INFO 2019-10-14 17:48:28.000000000
+0200
+++ new/pytest-lazy-fixture-0.6.2/PKG-INFO 2019-11-20 11:50:10.000000000
+0100
@@ -1,6 +1,6 @@
Metadata-Version: 1.2
Name: pytest-lazy-fixture
-Version: 0.6.1
+Version: 0.6.2
Summary: It helps to use fixtures in pytest.mark.parametrize
Home-page: https://github.com/tvorog/pytest-lazy-fixture
Author: Marsel Zaripov
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/pytest-lazy-fixture-0.6.1/pytest_lazy_fixture.egg-info/PKG-INFO
new/pytest-lazy-fixture-0.6.2/pytest_lazy_fixture.egg-info/PKG-INFO
--- old/pytest-lazy-fixture-0.6.1/pytest_lazy_fixture.egg-info/PKG-INFO
2019-10-14 17:48:28.000000000 +0200
+++ new/pytest-lazy-fixture-0.6.2/pytest_lazy_fixture.egg-info/PKG-INFO
2019-11-20 11:50:10.000000000 +0100
@@ -1,6 +1,6 @@
Metadata-Version: 1.2
Name: pytest-lazy-fixture
-Version: 0.6.1
+Version: 0.6.2
Summary: It helps to use fixtures in pytest.mark.parametrize
Home-page: https://github.com/tvorog/pytest-lazy-fixture
Author: Marsel Zaripov
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/pytest-lazy-fixture-0.6.1/pytest_lazyfixture.py
new/pytest-lazy-fixture-0.6.2/pytest_lazyfixture.py
--- old/pytest-lazy-fixture-0.6.1/pytest_lazyfixture.py 2019-10-14
17:23:13.000000000 +0200
+++ new/pytest-lazy-fixture-0.6.2/pytest_lazyfixture.py 2019-11-20
11:46:04.000000000 +0100
@@ -82,7 +82,13 @@
copied = copy.copy(metafunc)
copied.fixturenames = copy.copy(metafunc.fixturenames)
copied._calls = []
- copied._ids = copy.copy(metafunc._ids)
+
+ try:
+ copied._ids = copy.copy(metafunc._ids)
+ except AttributeError:
+ # pytest>=5.3.0
+ pass
+
copied._arg2fixturedefs = copy.copy(metafunc._arg2fixturedefs)
return copied
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/pytest-lazy-fixture-0.6.1/setup.py
new/pytest-lazy-fixture-0.6.2/setup.py
--- old/pytest-lazy-fixture-0.6.1/setup.py 2019-10-14 17:35:21.000000000
+0200
+++ new/pytest-lazy-fixture-0.6.2/setup.py 2019-11-20 11:47:16.000000000
+0100
@@ -13,7 +13,7 @@
setup(
name='pytest-lazy-fixture',
- version='0.6.1',
+ version='0.6.2',
author='Marsel Zaripov',
author_email='[email protected]',
maintainer='Marsel Zaripov',