commit python-pytest-flake8 for openSUSE:Factory

2020-05-28 Thread root
Hello community,

here is the log from the commit of package python-pytest-flake8 for 
openSUSE:Factory checked in at 2020-05-28 09:06:46

Comparing /work/SRC/openSUSE:Factory/python-pytest-flake8 (Old)
 and  /work/SRC/openSUSE:Factory/.python-pytest-flake8.new.3606 (New)


Package is "python-pytest-flake8"

Thu May 28 09:06:46 2020 rev:7 rq:805993 version:1.0.6

Changes:

--- 
/work/SRC/openSUSE:Factory/python-pytest-flake8/python-pytest-flake8.changes
2020-05-01 11:06:19.870931184 +0200
+++ 
/work/SRC/openSUSE:Factory/.python-pytest-flake8.new.3606/python-pytest-flake8.changes
  2020-05-28 09:06:52.655619555 +0200
@@ -1,0 +2,7 @@
+Fri May 15 20:47:09 UTC 2020 - Benjamin Greiner 
+
+- Update to 1.0.6
+  * Fix compatibility with flake8 >= 3.8, from @marc
+  gh#tholo/pytest-flake8#68 
+
+---

Old:

  pytest-flake8-1.0.5.tar.gz

New:

  pytest-flake8-1.0.6.tar.gz



Other differences:
--
++ python-pytest-flake8.spec ++
--- /var/tmp/diff_new_pack.QbfQRt/_old  2020-05-28 09:06:53.907623310 +0200
+++ /var/tmp/diff_new_pack.QbfQRt/_new  2020-05-28 09:06:53.907623310 +0200
@@ -18,7 +18,7 @@
 
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 Name:   python-pytest-flake8
-Version:1.0.5
+Version:1.0.6
 Release:0
 Summary:Plugin for pytest to check FLAKE8 requirements
 License:BSD-2-Clause

++ pytest-flake8-1.0.5.tar.gz -> pytest-flake8-1.0.6.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/pytest-flake8-1.0.5/CHANGELOG 
new/pytest-flake8-1.0.6/CHANGELOG
--- old/pytest-flake8-1.0.5/CHANGELOG   2020-04-23 20:56:22.0 +0200
+++ new/pytest-flake8-1.0.6/CHANGELOG   2020-05-13 00:27:51.0 +0200
@@ -1,3 +1,8 @@
+1.0.6
+-
+
+- Fix compatibility with flake8 >= 3.8, from @marc
+
 1.0.5
 -
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/pytest-flake8-1.0.5/PKG-INFO 
new/pytest-flake8-1.0.6/PKG-INFO
--- old/pytest-flake8-1.0.5/PKG-INFO2020-04-23 20:56:22.0 +0200
+++ new/pytest-flake8-1.0.6/PKG-INFO2020-05-13 00:27:52.0 +0200
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: pytest-flake8
-Version: 1.0.5
+Version: 1.0.6
 Summary: pytest plugin to check FLAKE8 requirements
 Home-page: https://github.com/tholo/pytest-flake8
 Author: Thorsten Lockert
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/pytest-flake8-1.0.5/pytest_flake8.egg-info/PKG-INFO 
new/pytest-flake8-1.0.6/pytest_flake8.egg-info/PKG-INFO
--- old/pytest-flake8-1.0.5/pytest_flake8.egg-info/PKG-INFO 2020-04-23 
20:56:22.0 +0200
+++ new/pytest-flake8-1.0.6/pytest_flake8.egg-info/PKG-INFO 2020-05-13 
00:27:51.0 +0200
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: pytest-flake8
-Version: 1.0.5
+Version: 1.0.6
 Summary: pytest plugin to check FLAKE8 requirements
 Home-page: https://github.com/tholo/pytest-flake8
 Author: Thorsten Lockert
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/pytest-flake8-1.0.5/pytest_flake8.py 
new/pytest-flake8-1.0.6/pytest_flake8.py
--- old/pytest-flake8-1.0.5/pytest_flake8.py2020-04-23 20:56:22.0 
+0200
+++ new/pytest-flake8-1.0.6/pytest_flake8.py2020-05-13 00:27:51.0 
+0200
@@ -4,6 +4,7 @@
 import re
 
 from flake8.main import application
+from flake8.options import config
 
 import py
 
@@ -188,11 +189,23 @@
 if statistics:
 args += ['--statistics']
 app = application.Application()
-app.parse_preliminary_options_and_args(args)
-app.make_config_finder()
-app.find_plugins()
-app.register_plugin_options()
-app.parse_configuration_and_cli(args)
+if not hasattr(app, 'parse_preliminary_options_and_args'):  # flake8 >= 3.8
+prelim_opts, remaining_args = app.parse_preliminary_options(args)
+config_finder = config.ConfigFileFinder(
+app.program,
+prelim_opts.append_config,
+config_file=prelim_opts.config,
+ignore_config_files=prelim_opts.isolated,
+)
+app.find_plugins(config_finder)
+app.register_plugin_options()
+app.parse_configuration_and_cli(config_finder, remaining_args)
+else:
+app.parse_preliminary_options_and_args(args)
+app.make_config_finder()
+app.find_plugins()
+app.register_plugin_options()
+app.parse_configuration_and_cli(args)
 if flake8ignore:
 app.options.ignore = flake8ignore
 app.make_formatter()  # fix this
@@ -204,7 +217,5 @@
 

commit python-pytest-flake8 for openSUSE:Factory

2020-05-01 Thread root
Hello community,

here is the log from the commit of package python-pytest-flake8 for 
openSUSE:Factory checked in at 2020-05-01 11:06:13

Comparing /work/SRC/openSUSE:Factory/python-pytest-flake8 (Old)
 and  /work/SRC/openSUSE:Factory/.python-pytest-flake8.new.2738 (New)


Package is "python-pytest-flake8"

Fri May  1 11:06:13 2020 rev:6 rq:798139 version:1.0.5

Changes:

--- 
/work/SRC/openSUSE:Factory/python-pytest-flake8/python-pytest-flake8.changes
2019-02-24 17:02:20.164710694 +0100
+++ 
/work/SRC/openSUSE:Factory/.python-pytest-flake8.new.2738/python-pytest-flake8.changes
  2020-05-01 11:06:19.870931184 +0200
@@ -1,0 +2,6 @@
+Mon Apr 27 10:21:56 UTC 2020 - Tomáš Chvátal 
+
+- Update to 1.0.5:
+  * Fix deprecation warning
+
+---

Old:

  pytest-flake8-1.0.4.tar.gz

New:

  pytest-flake8-1.0.5.tar.gz



Other differences:
--
++ python-pytest-flake8.spec ++
--- /var/tmp/diff_new_pack.EJTCTt/_old  2020-05-01 11:06:21.002933646 +0200
+++ /var/tmp/diff_new_pack.EJTCTt/_new  2020-05-01 11:06:21.006933654 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package python-pytest-flake8
 #
-# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2020 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-flake8
-Version:1.0.4
+Version:1.0.5
 Release:0
 Summary:Plugin for pytest to check FLAKE8 requirements
 License:BSD-2-Clause
@@ -49,7 +49,7 @@
 %python_expand %fdupes %{buildroot}%{$python_sitelib}
 
 %check
-%python_expand PYTHONPATH=%{buildroot}%{$python_sitelib} 
py.test-%{$python_bin_suffix} -v
+%pytest
 
 %files %{python_files}
 %license LICENSE

++ pytest-flake8-1.0.4.tar.gz -> pytest-flake8-1.0.5.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/pytest-flake8-1.0.4/CHANGELOG 
new/pytest-flake8-1.0.5/CHANGELOG
--- old/pytest-flake8-1.0.4/CHANGELOG   2019-01-31 21:05:36.0 +0100
+++ new/pytest-flake8-1.0.5/CHANGELOG   2020-04-23 20:56:22.0 +0200
@@ -1,3 +1,8 @@
+1.0.5
+-
+
+- Fix deprecation warning; from @jonasundderwolf
+
 1.0.4
 -
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/pytest-flake8-1.0.4/PKG-INFO 
new/pytest-flake8-1.0.5/PKG-INFO
--- old/pytest-flake8-1.0.4/PKG-INFO2019-01-31 21:05:36.0 +0100
+++ new/pytest-flake8-1.0.5/PKG-INFO2020-04-23 20:56:22.0 +0200
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: pytest-flake8
-Version: 1.0.4
+Version: 1.0.5
 Summary: pytest plugin to check FLAKE8 requirements
 Home-page: https://github.com/tholo/pytest-flake8
 Author: Thorsten Lockert
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/pytest-flake8-1.0.4/pytest_flake8.egg-info/PKG-INFO 
new/pytest-flake8-1.0.5/pytest_flake8.egg-info/PKG-INFO
--- old/pytest-flake8-1.0.4/pytest_flake8.egg-info/PKG-INFO 2019-01-31 
21:05:36.0 +0100
+++ new/pytest-flake8-1.0.5/pytest_flake8.egg-info/PKG-INFO 2020-04-23 
20:56:22.0 +0200
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: pytest-flake8
-Version: 1.0.4
+Version: 1.0.5
 Summary: pytest plugin to check FLAKE8 requirements
 Home-page: https://github.com/tholo/pytest-flake8
 Author: Thorsten Lockert
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/pytest-flake8-1.0.4/pytest_flake8.py 
new/pytest-flake8-1.0.5/pytest_flake8.py
--- old/pytest-flake8-1.0.4/pytest_flake8.py2019-01-31 21:05:36.0 
+0100
+++ new/pytest-flake8-1.0.5/pytest_flake8.py2020-04-23 20:56:22.0 
+0200
@@ -62,14 +62,23 @@
 if config.option.flake8 and path.ext in config._flake8exts:
 flake8ignore = config._flake8ignore(path)
 if flake8ignore is not None:
-return Flake8Item(
-path,
-parent,
-flake8ignore=flake8ignore,
-maxlength=config._flake8maxlen,
-maxcomplexity=config._flake8maxcomplexity,
-showshource=config._flake8showshource,
-statistics=config._flake8statistics)
+if hasattr(Flake8Item, "from_parent"):
+item = Flake8Item.from_parent(parent, fspath=path)
+item.flake8ignore = flake8ignore
+item.maxlength = config._flake8maxlen
+item.maxcomplexity = config._flake8maxcomplexity
+

commit python-pytest-flake8 for openSUSE:Factory

2019-02-24 Thread root
Hello community,

here is the log from the commit of package python-pytest-flake8 for 
openSUSE:Factory checked in at 2019-02-24 17:02:18

Comparing /work/SRC/openSUSE:Factory/python-pytest-flake8 (Old)
 and  /work/SRC/openSUSE:Factory/.python-pytest-flake8.new.28833 (New)


Package is "python-pytest-flake8"

Sun Feb 24 17:02:18 2019 rev:5 rq:674967 version:1.0.4

Changes:

--- 
/work/SRC/openSUSE:Factory/python-pytest-flake8/python-pytest-flake8.changes
2019-02-08 13:48:25.386778822 +0100
+++ 
/work/SRC/openSUSE:Factory/.python-pytest-flake8.new.28833/python-pytest-flake8.changes
 2019-02-24 17:02:20.164710694 +0100
@@ -1,0 +2,11 @@
+Thu Feb 14 12:51:40 UTC 2019 - Tomáš Chvátal 
+
+- Remove unused devel dependency
+- Update requirements to match reality
+
+---
+Mon Feb 11 10:43:25 UTC 2019 - Tomáš Chvátal 
+
+- Make sure we really really execute tests
+
+---



Other differences:
--
++ python-pytest-flake8.spec ++
--- /var/tmp/diff_new_pack.gB1Gos/_old  2019-02-24 17:02:20.816710384 +0100
+++ /var/tmp/diff_new_pack.gB1Gos/_new  2019-02-24 17:02:20.816710384 +0100
@@ -17,7 +17,6 @@
 
 
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
-%bcond_without test
 Name:   python-pytest-flake8
 Version:1.0.4
 Release:0
@@ -26,17 +25,14 @@
 Group:  Development/Languages/Python
 URL:https://github.com/tholo/pytest-flake8
 Source: 
https://files.pythonhosted.org/packages/source/p/pytest-flake8/pytest-flake8-%{version}.tar.gz
-BuildRequires:  %{python_module devel}
+BuildRequires:  %{python_module flake8 >= 3.5}
+BuildRequires:  %{python_module pytest >= 3.5}
 BuildRequires:  %{python_module setuptools}
 BuildRequires:  fdupes
 BuildRequires:  python-rpm-macros
-Requires:   python-flake8 >= 3.0
-Requires:   python-pytest >= 2.8
+Requires:   python-flake8 >= 3.5
+Requires:   python-pytest >= 3.5
 BuildArch:  noarch
-%if %{with test}
-BuildRequires:  %{python_module flake8 >= 3.0}
-BuildRequires:  %{python_module pytest >= 2.8}
-%endif
 %python_subpackages
 
 %description
@@ -52,10 +48,8 @@
 %python_install
 %python_expand %fdupes %{buildroot}%{$python_sitelib}
 
-%if %{with test}
 %check
-%python_exec setup.py test
-%endif
+%python_expand PYTHONPATH=%{buildroot}%{$python_sitelib} 
py.test-%{$python_bin_suffix} -v
 
 %files %{python_files}
 %license LICENSE




commit python-pytest-flake8 for openSUSE:Factory

2019-02-08 Thread root
Hello community,

here is the log from the commit of package python-pytest-flake8 for 
openSUSE:Factory checked in at 2019-02-08 13:48:24

Comparing /work/SRC/openSUSE:Factory/python-pytest-flake8 (Old)
 and  /work/SRC/openSUSE:Factory/.python-pytest-flake8.new.28833 (New)


Package is "python-pytest-flake8"

Fri Feb  8 13:48:24 2019 rev:4 rq:672127 version:1.0.4

Changes:

--- 
/work/SRC/openSUSE:Factory/python-pytest-flake8/python-pytest-flake8.changes
2018-05-11 09:18:38.109732561 +0200
+++ 
/work/SRC/openSUSE:Factory/.python-pytest-flake8.new.28833/python-pytest-flake8.changes
 2019-02-08 13:48:25.386778822 +0100
@@ -1,0 +2,17 @@
+Wed Feb  6 08:41:05 UTC 2019 - alarr...@suse.com
+
+- Update to version 1.0.4:
+  * Support flake8 3.7+ by checking existence of "app.make_notifier"
+  * More fixes for Travis CI -- properly specify Python versions, in
+particular for pypy (and fix a typo)
+
+- Update to version 1.0.3:
+  * Don't use long deprecated functions from pytest, broke with pytest 4.1.0
+  * Fix typo that caused some tests to not run as expected
+  * Run Travis CI tests against Python 3.7, and fix some issues with current 
tox
+
+- Update to version 1.0.2:
+  * Test on Python 3.7
+  * Escape a regex tring with r""
+
+---

Old:

  pytest-flake8-1.0.1.tar.gz

New:

  pytest-flake8-1.0.4.tar.gz



Other differences:
--
++ python-pytest-flake8.spec ++
--- /var/tmp/diff_new_pack.Dkz0FB/_old  2019-02-08 13:48:26.014778626 +0100
+++ /var/tmp/diff_new_pack.Dkz0FB/_new  2019-02-08 13:48:26.018778624 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package python-pytest-flake8
 #
-# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -12,14 +12,14 @@
 # license that conforms to the Open Source Definition (Version 1.9)
 # published by the Open Source Initiative.
 
-# Please submit bugfixes or comments via http://bugs.opensuse.org/
+# Please submit bugfixes or comments via https://bugs.opensuse.org/
 #
 
 
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 %bcond_without test
 Name:   python-pytest-flake8
-Version:1.0.1
+Version:1.0.4
 Release:0
 Summary:Plugin for pytest to check FLAKE8 requirements
 License:BSD-2-Clause

++ pytest-flake8-1.0.1.tar.gz -> pytest-flake8-1.0.4.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/pytest-flake8-1.0.1/CHANGELOG 
new/pytest-flake8-1.0.4/CHANGELOG
--- old/pytest-flake8-1.0.1/CHANGELOG   2018-04-30 21:40:58.0 +0200
+++ new/pytest-flake8-1.0.4/CHANGELOG   2019-01-31 21:05:36.0 +0100
@@ -1,3 +1,24 @@
+1.0.4
+-
+
+- Support flake8 3.7+ by checking existence of "app.make_notifier";
+  from jirikuncar@github
+- More fixes for Travis CI -- properly specify Python versions, in
+  particular for pypy (and fix a typo)
+
+1.0.3
+-
+
+- Don't use long deprecated functions from pytest, broke with pytest 4.1.0
+- Fix typo that caused some tests to not run as expected
+- Run Travis CI tests against Python 3.7, and fix some issues with current tox
+
+1.0.2
+-
+
+- Test on Python 3.7
+- Escape a regex tring with r""
+
 1.0.1
 -
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/pytest-flake8-1.0.1/PKG-INFO 
new/pytest-flake8-1.0.4/PKG-INFO
--- old/pytest-flake8-1.0.1/PKG-INFO2018-04-30 21:40:59.0 +0200
+++ new/pytest-flake8-1.0.4/PKG-INFO2019-01-31 21:05:36.0 +0100
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: pytest-flake8
-Version: 1.0.1
+Version: 1.0.4
 Summary: pytest plugin to check FLAKE8 requirements
 Home-page: https://github.com/tholo/pytest-flake8
 Author: Thorsten Lockert
@@ -147,6 +147,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
 Classifier: Programming Language :: Python :: Implementation :: CPython
 Classifier: Programming Language :: Python :: Implementation :: PyPy
 Classifier: Topic :: Software Development
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/pytest-flake8-1.0.1/pytest_flake8.egg-info/PKG-INFO 
new/pytest-flake8-1.0.4/pytest_flake8.egg-info/PKG-INFO
--- old/pytest-flake8-1.0.1/pytest_flake8.egg-info/PKG-INFO 2018-04-30 
21:40:59.0 +0200
+++ 

commit python-pytest-flake8 for openSUSE:Factory

2018-05-11 Thread root
Hello community,

here is the log from the commit of package python-pytest-flake8 for 
openSUSE:Factory checked in at 2018-05-11 09:18:35

Comparing /work/SRC/openSUSE:Factory/python-pytest-flake8 (Old)
 and  /work/SRC/openSUSE:Factory/.python-pytest-flake8.new (New)


Package is "python-pytest-flake8"

Fri May 11 09:18:35 2018 rev:3 rq:606270 version:1.0.1

Changes:

--- 
/work/SRC/openSUSE:Factory/python-pytest-flake8/python-pytest-flake8.changes
2018-04-16 12:52:01.342492369 +0200
+++ 
/work/SRC/openSUSE:Factory/.python-pytest-flake8.new/python-pytest-flake8.changes
   2018-05-11 09:18:38.109732561 +0200
@@ -1,0 +2,6 @@
+Sun May  6 05:47:30 UTC 2018 - a...@gmx.de
+
+- update to version 1.0.1:
+  * Correct junit XML output for pytest 3.5.x
+
+---

Old:

  pytest-flake8-1.0.0.tar.gz

New:

  pytest-flake8-1.0.1.tar.gz



Other differences:
--
++ python-pytest-flake8.spec ++
--- /var/tmp/diff_new_pack.rjC5OP/_old  2018-05-11 09:18:38.833706331 +0200
+++ /var/tmp/diff_new_pack.rjC5OP/_new  2018-05-11 09:18:38.837706186 +0200
@@ -19,7 +19,7 @@
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 %bcond_without test
 Name:   python-pytest-flake8
-Version:1.0.0
+Version:1.0.1
 Release:0
 Summary:Plugin for pytest to check FLAKE8 requirements
 License:BSD-2-Clause

++ pytest-flake8-1.0.0.tar.gz -> pytest-flake8-1.0.1.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/pytest-flake8-1.0.0/.gitignore 
new/pytest-flake8-1.0.1/.gitignore
--- old/pytest-flake8-1.0.0/.gitignore  2018-03-19 20:01:38.0 +0100
+++ new/pytest-flake8-1.0.1/.gitignore  1970-01-01 01:00:00.0 +0100
@@ -1,9 +0,0 @@
-*.egg-info/
-.pytest_cache/
-*.pyc
-*.sublime-workspace
-.cache/
-.tox/
-/build/
-/dist/
-__pycache__/
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/pytest-flake8-1.0.0/.travis.yml 
new/pytest-flake8-1.0.1/.travis.yml
--- old/pytest-flake8-1.0.0/.travis.yml 2017-10-26 19:51:45.0 +0200
+++ new/pytest-flake8-1.0.1/.travis.yml 1970-01-01 01:00:00.0 +0100
@@ -1,23 +0,0 @@
-language: python
-matrix:
-  include:
-- python: 2.7
-  env: TOXENV=py27
-- python: 2.7
-  env: TOXENV=py27-pytesttrunk
-- python: 2.7
-  env: TOXENV=py-xdist
-- python: 3.4
-  env: TOXENV=py34
-- python: 3.5
-  env: TOXENV=py35
-- python: 3.6
-  env: TOXENV=py36
-- python: pypy
-  env: TOXENV=pypy
-- python: pypy3
-  env: TOXENV=pypy3
-install:
-  - pip install tox
-script:
-  - tox -e $TOXENV
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/pytest-flake8-1.0.0/CHANGELOG 
new/pytest-flake8-1.0.1/CHANGELOG
--- old/pytest-flake8-1.0.0/CHANGELOG   2018-03-19 20:08:30.0 +0100
+++ new/pytest-flake8-1.0.1/CHANGELOG   2018-04-30 21:40:58.0 +0200
@@ -1,3 +1,8 @@
+1.0.1
+-
+
+- Correct junit XML output for pytest 3.5.x
+
 1.0.0
 -
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/pytest-flake8-1.0.0/PKG-INFO 
new/pytest-flake8-1.0.1/PKG-INFO
--- old/pytest-flake8-1.0.0/PKG-INFO2018-03-19 20:13:51.0 +0100
+++ new/pytest-flake8-1.0.1/PKG-INFO2018-04-30 21:40:59.0 +0200
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: pytest-flake8
-Version: 1.0.0
+Version: 1.0.1
 Summary: pytest plugin to check FLAKE8 requirements
 Home-page: https://github.com/tholo/pytest-flake8
 Author: Thorsten Lockert
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/pytest-flake8-1.0.0/pytest-flake8.sublime-project 
new/pytest-flake8-1.0.1/pytest-flake8.sublime-project
--- old/pytest-flake8-1.0.0/pytest-flake8.sublime-project   2015-04-01 
01:31:39.0 +0200
+++ new/pytest-flake8-1.0.1/pytest-flake8.sublime-project   1970-01-01 
01:00:00.0 +0100
@@ -1,17 +0,0 @@
-{
-   "folders":
-   [
-   {
-   "folder_exclude_patterns":
-   [
-   "__pycache__",
-   "*.egg-info",
-   ".cache",
-   ".tox",
-   "build",
-   "dist"
-   ],
-   "path": "."
-   }
-   ]
-}
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/pytest-flake8-1.0.0/pytest_flake8.egg-info/PKG-INFO 

commit python-pytest-flake8 for openSUSE:Factory

2018-04-16 Thread root
Hello community,

here is the log from the commit of package python-pytest-flake8 for 
openSUSE:Factory checked in at 2018-04-16 12:51:17

Comparing /work/SRC/openSUSE:Factory/python-pytest-flake8 (Old)
 and  /work/SRC/openSUSE:Factory/.python-pytest-flake8.new (New)


Package is "python-pytest-flake8"

Mon Apr 16 12:51:17 2018 rev:2 rq:596766 version:1.0.0

Changes:

--- 
/work/SRC/openSUSE:Factory/python-pytest-flake8/python-pytest-flake8.changes
2018-01-13 21:47:55.269309326 +0100
+++ 
/work/SRC/openSUSE:Factory/.python-pytest-flake8.new/python-pytest-flake8.changes
   2018-04-16 12:52:01.342492369 +0200
@@ -1,0 +2,11 @@
+Sun Apr 15 18:41:27 UTC 2018 - a...@gmx.de
+
+- specfile:
+  * update copyright year
+
+- update to version 1.0.0:
+  * Honor ignore settings in default flake8 config section; from
+brianbruggeman@github
+  * Improve junit XML output; from Struan Judd
+
+---

Old:

  pytest-flake8-0.9.1.tar.gz

New:

  pytest-flake8-1.0.0.tar.gz



Other differences:
--
++ python-pytest-flake8.spec ++
--- /var/tmp/diff_new_pack.JdBWLe/_old  2018-04-16 12:52:01.938470693 +0200
+++ /var/tmp/diff_new_pack.JdBWLe/_new  2018-04-16 12:52:01.942470548 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package python-pytest-flake8
 #
-# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -19,25 +19,24 @@
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 %bcond_without test
 Name:   python-pytest-flake8
-Version:0.9.1
+Version:1.0.0
 Release:0
 Summary:Plugin for pytest to check FLAKE8 requirements
 License:BSD-2-Clause
 Group:  Development/Languages/Python
-Url:https://github.com/tholo/pytest-flake8
+URL:https://github.com/tholo/pytest-flake8
 Source: 
https://files.pythonhosted.org/packages/source/p/pytest-flake8/pytest-flake8-%{version}.tar.gz
 BuildRequires:  %{python_module devel}
 BuildRequires:  %{python_module setuptools}
 BuildRequires:  fdupes
 BuildRequires:  python-rpm-macros
+Requires:   python-flake8 >= 3.0
+Requires:   python-pytest >= 2.8
+BuildArch:  noarch
 %if %{with test}
 BuildRequires:  %{python_module flake8 >= 3.0}
 BuildRequires:  %{python_module pytest >= 2.8}
 %endif
-Requires:   python-flake8 >= 3.0
-Requires:   python-pytest >= 2.8
-BuildArch:  noarch
-
 %python_subpackages
 
 %description
@@ -59,8 +58,8 @@
 %endif
 
 %files %{python_files}
-%defattr(-,root,root,-)
-%doc CHANGELOG LICENSE README.rst
+%license LICENSE
+%doc CHANGELOG README.rst
 %{python_sitelib}/*
 
 %changelog

++ pytest-flake8-0.9.1.tar.gz -> pytest-flake8-1.0.0.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/pytest-flake8-0.9.1/.gitignore 
new/pytest-flake8-1.0.0/.gitignore
--- old/pytest-flake8-0.9.1/.gitignore  2017-10-26 20:25:46.0 +0200
+++ new/pytest-flake8-1.0.0/.gitignore  2018-03-19 20:01:38.0 +0100
@@ -1,4 +1,5 @@
 *.egg-info/
+.pytest_cache/
 *.pyc
 *.sublime-workspace
 .cache/
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/pytest-flake8-0.9.1/CHANGELOG 
new/pytest-flake8-1.0.0/CHANGELOG
--- old/pytest-flake8-0.9.1/CHANGELOG   2017-10-26 20:25:46.0 +0200
+++ new/pytest-flake8-1.0.0/CHANGELOG   2018-03-19 20:08:30.0 +0100
@@ -1,3 +1,10 @@
+1.0.0
+-
+
+- Honor ignore settings in default flake8 config section; from
+  brianbruggeman@github
+- Improve junit XML output; from Struan Judd
+
 0.9.1
 -
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/pytest-flake8-0.9.1/PKG-INFO 
new/pytest-flake8-1.0.0/PKG-INFO
--- old/pytest-flake8-0.9.1/PKG-INFO2017-10-26 20:25:47.0 +0200
+++ new/pytest-flake8-1.0.0/PKG-INFO2018-03-19 20:13:51.0 +0100
@@ -1,12 +1,11 @@
 Metadata-Version: 1.1
 Name: pytest-flake8
-Version: 0.9.1
+Version: 1.0.0
 Summary: pytest plugin to check FLAKE8 requirements
 Home-page: https://github.com/tholo/pytest-flake8
 Author: Thorsten Lockert
 Author-email: th...@sigmasoft.com
 License: BSD License
-Description-Content-Type: UNKNOWN
 Description: pytest plugin for efficiently checking PEP8 compliance 
 ==
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore'