Hello community,

here is the log from the commit of package python-pytest-rerunfailures for 
openSUSE:Factory checked in at 2019-12-04 13:56:20
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-pytest-rerunfailures (Old)
 and      /work/SRC/openSUSE:Factory/.python-pytest-rerunfailures.new.4691 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "python-pytest-rerunfailures"

Wed Dec  4 13:56:20 2019 rev:4 rq:753967 version:8.0

Changes:
--------
--- 
/work/SRC/openSUSE:Factory/python-pytest-rerunfailures/python-pytest-rerunfailures.changes
  2019-03-28 22:49:48.875042263 +0100
+++ 
/work/SRC/openSUSE:Factory/.python-pytest-rerunfailures.new.4691/python-pytest-rerunfailures.changes
        2019-12-04 14:21:13.174480596 +0100
@@ -1,0 +2,7 @@
+Wed Dec  4 11:57:57 UTC 2019 - Tomáš Chvátal <[email protected]>
+
+- Update to 8.0:
+  * Explicitly depend on setuptools to ensure installation when
+    working in environments without it
+
+-------------------------------------------------------------------

Old:
----
  pytest-rerunfailures-7.0.tar.gz

New:
----
  pytest-rerunfailures-8.0.tar.gz

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

Other differences:
------------------
++++++ python-pytest-rerunfailures.spec ++++++
--- /var/tmp/diff_new_pack.selxFJ/_old  2019-12-04 14:21:13.574480933 +0100
+++ /var/tmp/diff_new_pack.selxFJ/_new  2019-12-04 14:21:13.574480933 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package python-pytest-rerunfailures
 #
-# 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,20 +18,20 @@
 
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 Name:           python-pytest-rerunfailures
-Version:        7.0
+Version:        8.0
 Release:        0
 Summary:        A pytest plugin to re-run tests
 License:        MPL-2.0
-Group:          Development/Languages/Python
 URL:            https://github.com/pytest-dev/pytest-rerunfailures
 Source:         
https://files.pythonhosted.org/packages/source/p/pytest-rerunfailures/pytest-rerunfailures-%{version}.tar.gz
-BuildRequires:  %{python_module setuptools}
+BuildRequires:  %{python_module setuptools >= 40.0}
 BuildRequires:  fdupes
 BuildRequires:  python-rpm-macros
-Requires:       python-pytest >= 3.8
+Requires:       python-pytest >= 4.4
+Requires:       python-setuptools >= 40.0
 BuildArch:      noarch
 # SECTION test requirements
-BuildRequires:  %{python_module pytest >= 3.8}
+BuildRequires:  %{python_module pytest >= 4.4}
 BuildRequires:  python-mock
 # /SECTION
 %python_subpackages
@@ -51,7 +51,8 @@
 %python_expand %fdupes %{buildroot}%{$python_sitelib}
 
 %check
-%python_expand PYTHONPATH=%{buildroot}%{$python_sitelib} 
py.test-%{$python_bin_suffix} -v
+export PYTHONDONTWRITEBYTECODE=1
+%pytest
 
 %files %{python_files}
 %doc CHANGES.rst README.rst

++++++ pytest-rerunfailures-7.0.tar.gz -> pytest-rerunfailures-8.0.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/pytest-rerunfailures-7.0/.travis.yml 
new/pytest-rerunfailures-8.0/.travis.yml
--- old/pytest-rerunfailures-7.0/.travis.yml    2019-03-28 08:28:31.000000000 
+0100
+++ new/pytest-rerunfailures-8.0/.travis.yml    2019-11-18 15:14:01.000000000 
+0100
@@ -3,7 +3,6 @@
 sudo: true
 python:
   - 2.7
-  - 3.4
   - 3.5
   - 3.6
   - 3.7
@@ -11,11 +10,35 @@
   - pypy2.7-5.10.0
   - pypy3.5
 env:
-  - PYTEST=3.10.0
-  - PYTEST=4.0.2
-  - PYTEST=4.1.1
-  - PYTEST=4.2.1
-  - PYTEST=4.3.1
+  - PYTEST=4.4.2
+  - PYTEST=4.5.0
+  - PYTEST=4.6.6
+matrix:
+  include:
+    - python: 3.5
+      env: PYTEST=5.0.1
+    - python: 3.6
+      env: PYTEST=5.0.1
+    - python: 3.7
+      env: PYTEST=5.0.1
+    - python: pypy3.5
+      env: PYTEST=5.0.1
+    - python: 3.5
+      env: PYTEST=5.1.3
+    - python: 3.6
+      env: PYTEST=5.1.3
+    - python: 3.7
+      env: PYTEST=5.1.3
+    - python: pypy3.5
+      env: PYTEST=5.1.3
+    - python: 3.5
+      env: PYTEST=5.2.1
+    - python: 3.6
+      env: PYTEST=5.2.1
+    - python: 3.7
+      env: PYTEST=5.2.1
+    - python: pypy3.5
+      env: PYTEST=5.2.1
 install:
   - pip install -q pytest==$PYTEST
   - pip install -q -e .
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/pytest-rerunfailures-7.0/CHANGES.rst 
new/pytest-rerunfailures-8.0/CHANGES.rst
--- old/pytest-rerunfailures-7.0/CHANGES.rst    2019-03-28 08:28:31.000000000 
+0100
+++ new/pytest-rerunfailures-8.0/CHANGES.rst    2019-11-18 15:14:01.000000000 
+0100
@@ -1,6 +1,32 @@
 Changelog
 =========
 
+8.0 (2019-11-18)
+----------------
+
+Backwards incompatible changes
+++++++++++++++++++++++++++++++
+
+- Drop support for pytest version 3.10, 4.0, 4.1, 4.2 and 4.3
+
+- Drop support for Python 3.4.
+
+Features
+++++++++
+
+- Add support for pytest version 4.4, 4.5, 4.6, 5.0, 5.1 and 5.2.
+
+Bug fixes
++++++++++
+
+- Explicitly depend on setuptools to ensure installation when working in
+  environments without it.
+  (`#98 <https://github.com/pytest-dev/pytest-rerunfailures/pull/98>`_)
+  (PR from `@Eric-Arellano`_)
+
+.. _@Eric-Arellano: https://github.com/Eric-Arellano
+
+
 7.0 (2019-03-28)
 ----------------
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/pytest-rerunfailures-7.0/PKG-INFO 
new/pytest-rerunfailures-8.0/PKG-INFO
--- old/pytest-rerunfailures-7.0/PKG-INFO       2019-03-28 08:28:32.000000000 
+0100
+++ new/pytest-rerunfailures-8.0/PKG-INFO       2019-11-18 15:14:03.000000000 
+0100
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: pytest-rerunfailures
-Version: 7.0
+Version: 8.0
 Summary: pytest plugin to re-run tests to eliminate flaky failures
 Home-page: https://github.com/pytest-dev/pytest-rerunfailures
 Author: Leah Klearman
@@ -30,7 +30,7 @@
         You will need the following prerequisites in order to use 
pytest-rerunfailures:
         
         - Python 2.7, 3.4, 3.5, 3.6, 3.7, PyPy, or PyPy3
-        - pytest 3.10 or newer
+        - pytest 4.3 or newer
         
         This package is currently tested against the last 5 minor pytest 
releases. In
         case you work with an older version of pytest you should consider 
updating or
@@ -145,6 +145,32 @@
         Changelog
         =========
         
+        8.0 (2019-11-18)
+        ----------------
+        
+        Backwards incompatible changes
+        ++++++++++++++++++++++++++++++
+        
+        - Drop support for pytest version 3.10, 4.0, 4.1, 4.2 and 4.3
+        
+        - Drop support for Python 3.4.
+        
+        Features
+        ++++++++
+        
+        - Add support for pytest version 4.4, 4.5, 4.6, 5.0, 5.1 and 5.2.
+        
+        Bug fixes
+        +++++++++
+        
+        - Explicitly depend on setuptools to ensure installation when working 
in
+          environments without it.
+          (`#98 <https://github.com/pytest-dev/pytest-rerunfailures/pull/98>`_)
+          (PR from `@Eric-Arellano`_)
+        
+        .. _@Eric-Arellano: https://github.com/Eric-Arellano
+        
+        
         7.0 (2019-03-28)
         ----------------
         
@@ -327,7 +353,6 @@
 Classifier: Topic :: Software Development :: Testing
 Classifier: Topic :: Utilities
 Classifier: Programming Language :: Python :: 2.7
-Classifier: Programming Language :: Python :: 3.4
 Classifier: Programming Language :: Python :: 3.5
 Classifier: Programming Language :: Python :: 3.6
 Classifier: Programming Language :: Python :: 3.7
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/pytest-rerunfailures-7.0/README.rst 
new/pytest-rerunfailures-8.0/README.rst
--- old/pytest-rerunfailures-7.0/README.rst     2019-03-28 08:28:31.000000000 
+0100
+++ new/pytest-rerunfailures-8.0/README.rst     2019-11-18 15:14:01.000000000 
+0100
@@ -20,7 +20,7 @@
 You will need the following prerequisites in order to use pytest-rerunfailures:
 
 - Python 2.7, 3.4, 3.5, 3.6, 3.7, PyPy, or PyPy3
-- pytest 3.10 or newer
+- pytest 4.3 or newer
 
 This package is currently tested against the last 5 minor pytest releases. In
 case you work with an older version of pytest you should consider updating or
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/pytest-rerunfailures-7.0/pytest_rerunfailures.egg-info/PKG-INFO 
new/pytest-rerunfailures-8.0/pytest_rerunfailures.egg-info/PKG-INFO
--- old/pytest-rerunfailures-7.0/pytest_rerunfailures.egg-info/PKG-INFO 
2019-03-28 08:28:32.000000000 +0100
+++ new/pytest-rerunfailures-8.0/pytest_rerunfailures.egg-info/PKG-INFO 
2019-11-18 15:14:02.000000000 +0100
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: pytest-rerunfailures
-Version: 7.0
+Version: 8.0
 Summary: pytest plugin to re-run tests to eliminate flaky failures
 Home-page: https://github.com/pytest-dev/pytest-rerunfailures
 Author: Leah Klearman
@@ -30,7 +30,7 @@
         You will need the following prerequisites in order to use 
pytest-rerunfailures:
         
         - Python 2.7, 3.4, 3.5, 3.6, 3.7, PyPy, or PyPy3
-        - pytest 3.10 or newer
+        - pytest 4.3 or newer
         
         This package is currently tested against the last 5 minor pytest 
releases. In
         case you work with an older version of pytest you should consider 
updating or
@@ -145,6 +145,32 @@
         Changelog
         =========
         
+        8.0 (2019-11-18)
+        ----------------
+        
+        Backwards incompatible changes
+        ++++++++++++++++++++++++++++++
+        
+        - Drop support for pytest version 3.10, 4.0, 4.1, 4.2 and 4.3
+        
+        - Drop support for Python 3.4.
+        
+        Features
+        ++++++++
+        
+        - Add support for pytest version 4.4, 4.5, 4.6, 5.0, 5.1 and 5.2.
+        
+        Bug fixes
+        +++++++++
+        
+        - Explicitly depend on setuptools to ensure installation when working 
in
+          environments without it.
+          (`#98 <https://github.com/pytest-dev/pytest-rerunfailures/pull/98>`_)
+          (PR from `@Eric-Arellano`_)
+        
+        .. _@Eric-Arellano: https://github.com/Eric-Arellano
+        
+        
         7.0 (2019-03-28)
         ----------------
         
@@ -327,7 +353,6 @@
 Classifier: Topic :: Software Development :: Testing
 Classifier: Topic :: Utilities
 Classifier: Programming Language :: Python :: 2.7
-Classifier: Programming Language :: Python :: 3.4
 Classifier: Programming Language :: Python :: 3.5
 Classifier: Programming Language :: Python :: 3.6
 Classifier: Programming Language :: Python :: 3.7
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/pytest-rerunfailures-7.0/pytest_rerunfailures.egg-info/requires.txt 
new/pytest-rerunfailures-8.0/pytest_rerunfailures.egg-info/requires.txt
--- old/pytest-rerunfailures-7.0/pytest_rerunfailures.egg-info/requires.txt     
2019-03-28 08:28:32.000000000 +0100
+++ new/pytest-rerunfailures-8.0/pytest_rerunfailures.egg-info/requires.txt     
2019-11-18 15:14:02.000000000 +0100
@@ -1 +1,2 @@
-pytest>=3.10
+setuptools>=40.0
+pytest>=4.4
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/pytest-rerunfailures-7.0/setup.py 
new/pytest-rerunfailures-8.0/setup.py
--- old/pytest-rerunfailures-7.0/setup.py       2019-03-28 08:28:31.000000000 
+0100
+++ new/pytest-rerunfailures-8.0/setup.py       2019-11-18 15:14:01.000000000 
+0100
@@ -1,19 +1,22 @@
 from setuptools import setup
 
+with open('README.rst') as readme, open('CHANGES.rst') as changelog:
+    long_description = (
+        '.. contents::\n\n' +
+        readme.read() +
+        '\n\n' +
+        changelog.read())
+
 setup(name='pytest-rerunfailures',
-      version='7.0',
+      version='8.0',
       description='pytest plugin to re-run tests to eliminate flaky failures',
-      long_description=(
-          '.. contents::\n\n' +
-          open('README.rst').read() +
-          '\n\n' +
-          open('CHANGES.rst').read()),
+      long_description=long_description,
       author='Leah Klearman',
       author_email='[email protected]',
       url='https://github.com/pytest-dev/pytest-rerunfailures',
       py_modules=['pytest_rerunfailures'],
       entry_points={'pytest11': ['rerunfailures = pytest_rerunfailures']},
-      install_requires=['pytest >= 3.10'],
+      install_requires=['setuptools>=40.0', 'pytest >= 4.4'],
       license='Mozilla Public License 2.0 (MPL 2.0)',
       keywords='py.test pytest rerun failures flaky',
       zip_safe=False,
@@ -29,7 +32,6 @@
           'Topic :: Software Development :: Testing',
           'Topic :: Utilities',
           'Programming Language :: Python :: 2.7',
-          'Programming Language :: Python :: 3.4',
           'Programming Language :: Python :: 3.5',
           'Programming Language :: Python :: 3.6',
           'Programming Language :: Python :: 3.7',
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/pytest-rerunfailures-7.0/tox.ini 
new/pytest-rerunfailures-8.0/tox.ini
--- old/pytest-rerunfailures-7.0/tox.ini        2019-03-28 08:28:31.000000000 
+0100
+++ new/pytest-rerunfailures-8.0/tox.ini        2019-11-18 15:14:01.000000000 
+0100
@@ -4,14 +4,15 @@
 # and then run "tox" from this directory.
 
 [tox]
-envlist = py{27,34,35,36,37,py,py3}-pytest{310,40,41,42,43},
+envlist = 
py{27,35,36,37,py,py3}-pytest{44,45,46},py{35,36,37,py3}-pytest{50,51,52},
 
 [testenv]
 commands = py.test test_pytest_rerunfailures.py {posargs}
 deps =
     mock
-    pytest310: pytest==3.10.*
-    pytest40: pytest==4.0.*
-    pytest41: pytest==4.1.*
-    pytest42: pytest==4.2.*
-    pytest43: pytest==4.3.*
+    pytest44: pytest==4.4.*
+    pytest45: pytest==4.5.*
+    pytest46: pytest==4.6.*
+    pytest50: pytest==5.0.*
+    pytest51: pytest==5.1.*
+    pytest52: pytest==5.2.*


Reply via email to