Hello community, here is the log from the commit of package python-flake8 for openSUSE:Factory checked in at 2019-02-14 14:12:14 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/python-flake8 (Old) and /work/SRC/openSUSE:Factory/.python-flake8.new.28833 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-flake8" Thu Feb 14 14:12:14 2019 rev:22 rq:672301 version:3.7.5 Changes: -------- --- /work/SRC/openSUSE:Factory/python-flake8/python-flake8.changes 2019-02-02 21:45:30.560175193 +0100 +++ /work/SRC/openSUSE:Factory/.python-flake8.new.28833/python-flake8.changes 2019-02-14 14:12:17.776253104 +0100 @@ -1,0 +2,79 @@ +Wed Feb 6 09:42:40 UTC 2019 - Antonio Larrosa <[email protected]> + +- Add missing dependency on python3-typing when python3 < 3.5 +- Add fix-mock-patch-with-python3.4.patch to fix building the package in + Leap 42.3. In python 3.5, mock.patch uses create=True automatically if + you are patching builtins in a module, but in python 3.4 the argument + is still needed. + +------------------------------------------------------------------- +Tue Feb 5 11:48:33 UTC 2019 - Antonio Larrosa <[email protected]> + +- Enable tests +- Add allow-bytes-filenames.patch to fix some tests that fail because + they pass bytes objects as filenames. +- Update remove_mock_dependency.patch to fix another test that used mock + +------------------------------------------------------------------- +Tue Feb 5 09:21:47 UTC 2019 - Antonio Larrosa <[email protected]> + +- Update to version 3.7.5: + * Bugs Fixed + + Fix reporting of pyflakes "referenced before assignment" error + (See also GitLab!301, GitLab#503) + +- Update to version 3.7.4: + * Bugs Fixed + + Fix performance regression with lots of per-file-ignores and errors + (See also GitLab!299, GitLab#501) + +- Update to version 3.7.3: + * Bugs Fixed + + Fix imports of typing in python 3.5.0 / 3.5.1 (See also GitLab!294, + GitLab#498) + + Fix flake8 --statistics (See also GitLab!295, GitLab#499) + + Gracefully ignore flake8-per-file-ignores plugin if installed + (See also GitLab!297, GitLab#495) + + Improve error message for malformed per-file-ignores + (See also GitLab!298, GitLab#489) + +- Update to version 3.7.2: + * Bugs Fixed + + Fix broken flake8 --diff (regressed in 3.7.0) (See also GitLab!292, + GitLab#490) + + Fix typo in plugin exception reporting (See also GitLab!275, GitLab#491) + + Fix AttributeError while attempting to use the legacy api + (regressed in 3.7.0) (See also GitLab!293, GitLab#497) + +- Update to version 3.7.1: + * Bugs Fixed + + Fix capitalized filenames in per-file-ignores setting (See also GitLab!290, GitLab#488) + +- Update to version 3.7.0: + * New Dependency Information + + Add dependency on entrypoints >= 0.3, < 0.4 + (See also GitLab!264, GitLab!288) + + Pyflakes has been updated to >= 2.1.0, < 2.2.0 + (See also GitLab!283, GitLab!285) + + pycodestyle has been updated to >= 2.5.0, < 2.6.0 + (See also GitLab!287) + * Features + + Add support for per-file-ignores (See also GitLab!259, GitLab#156, + GitLab!281, GitLab#471) + + Enable use of float and complex option types (See also GitLab!261, + GitLab#452) + + Improve startup performance by switching from pkg_resources to + entrypoints (See also GitLab!264) + + Add metadata for use through the pre-commit git hooks framework + (See also GitLab!268, GitLab!284) + + Allow physical line checks to return more than one result + (See also GitLab!269) + + Allow # noqa:X123 comments without space between the colon and codes list + (See also GitLab!273, GitLab#470) + + Remove broken and unused flake8.listen plugin type + (See also GitLab!274, GitLab#480) + +- Remove pyflakes21.patch which is already included upstream +- Rebase remove_mock_dependency.patch + +------------------------------------------------------------------- Old: ---- flake8-3.6.0.tar.gz pyflakes21.patch New: ---- fix-mock-patch-with-python3.4.patch flake8-3.7.5.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ python-flake8.spec ++++++ --- /var/tmp/diff_new_pack.ivjC1D/_old 2019-02-14 14:12:18.344252823 +0100 +++ /var/tmp/diff_new_pack.ivjC1D/_new 2019-02-14 14:12:18.348252820 +0100 @@ -19,7 +19,7 @@ %{?!python_module:%define python_module() python-%{**} python3-%{**}} %bcond_without python2 Name: python-flake8 -Version: 3.6.0 +Version: 3.7.5 Release: 0 Summary: Modular source code checker: pep8, pyflakes and co License: MIT @@ -27,31 +27,45 @@ URL: https://gitlab.com/pycqa/flake8 Source: https://files.pythonhosted.org/packages/source/f/flake8/flake8-%{version}.tar.gz Patch0: remove_mock_dependency.patch -Patch1: pyflakes21.patch +Patch1: fix-mock-patch-with-python3.4.patch BuildRequires: %{python_module setuptools} BuildRequires: fdupes BuildRequires: python-rpm-macros +Requires: python-entrypoints >= 0.3 Requires: python-mccabe >= 0.6.0 -Requires: python-pycodestyle >= 2.4.0 -Requires: python-pyflakes >= 2.0.0 +Requires: python-pycodestyle >= 2.5.0 +Requires: python-pyflakes >= 2.1.0 Requires(post): update-alternatives Requires(postun): update-alternatives BuildArch: noarch # SECTION test requirements -BuildRequires: %{python_module mccabe >= 0.2.1} -BuildRequires: %{python_module pycodestyle >= 2.4.0} -BuildRequires: %{python_module pyflakes >= 2.0.0} +BuildRequires: %{python_module entrypoints >= 0.3} +BuildRequires: %{python_module mccabe >= 0.6.0} +BuildRequires: %{python_module pycodestyle >= 2.5.0} +BuildRequires: %{python_module pyflakes >= 2.1.0} BuildRequires: %{python_module pytest-runner} BuildRequires: %{python_module pytest} %if %{with python2} -BuildRequires: python2-configparser +BuildRequires: python2-configparser >= 3.7.0 BuildRequires: python2-enum34 +BuildRequires: python2-functools32 BuildRequires: python2-mock +BuildRequires: python2-typing +%endif +%if 0%{?python3_version_nodots} < 35 +BuildRequires: python3-typing %endif # /SECTION %ifpython2 -Requires: python-configparser +Requires: python-configparser >= 3.7.0 Requires: python-enum34 +Requires: python-functools32 +Requires: python-typing +%endif +%ifpython3 +%if 0%{?python3_version_nodots} < 35 +Requires: python3-typing +%endif %endif %python_subpackages @@ -83,7 +97,7 @@ %python_uninstall_alternative flake8 %check -%python_exec setup.py test +%python_expand PYTHONPATH=%{buildroot}%{$python_sitelib} $python -m pytest tests %files %{python_files} %doc README.rst ++++++ fix-mock-patch-with-python3.4.patch ++++++ From: Antonio Larrosa <[email protected]> Subject: Fix mock.patch with python3.4 In python 3.5, mock.patch uses create=True automatically if you are patching builtins in a module, but in python 3.4 the argument is still needed. Index: flake8-3.7.5/tests/unit/test_debug.py =================================================================== --- flake8-3.7.5.orig/tests/unit/test_debug.py +++ flake8-3.7.5/tests/unit/test_debug.py @@ -70,7 +70,7 @@ def test_information(system, pyversion, system.assert_called_once_with() [email protected]('flake8.main.debug.print') [email protected]('flake8.main.debug.print', create=True) @mock.patch('flake8.main.debug.information', return_value={}) @mock.patch('json.dumps', return_value='{}') def test_print_information_no_plugins(dumps, information, print_mock): @@ -85,7 +85,7 @@ def test_print_information_no_plugins(du assert print_mock.called is False [email protected]('flake8.main.debug.print') [email protected]('flake8.main.debug.print', create=True) @mock.patch('flake8.main.debug.information', return_value={}) @mock.patch('json.dumps', return_value='{}') def test_print_information(dumps, information, print_mock): Index: flake8-3.7.5/tests/unit/test_base_formatter.py =================================================================== --- flake8-3.7.5.orig/tests/unit/test_base_formatter.py +++ flake8-3.7.5/tests/unit/test_base_formatter.py @@ -23,7 +23,7 @@ def test_start(filename): """Verify we open a new file in the start method.""" mock_open = mock.mock_open() formatter = base.BaseFormatter(options(output_file=filename)) - with mock.patch('flake8.formatting.base.open', mock_open): + with mock.patch('flake8.formatting.base.open', mock_open, create=True): formatter.start() if filename is None: @@ -90,7 +90,7 @@ def test_write_uses_an_output_file(tee): formatter = base.BaseFormatter(options(tee=tee)) formatter.output_fd = filemock - with mock.patch('flake8.formatting.base.print') as print_func: + with mock.patch('flake8.formatting.base.print', create=True) as print_func: formatter.write(line, source) if tee: assert print_func.called @@ -109,7 +109,7 @@ def test_write_uses_an_output_file(tee): ] [email protected]('flake8.formatting.base.print') [email protected]('flake8.formatting.base.print', create=True) def test_write_uses_print(print_function): """Verify that we use the print function without an output file.""" line = 'Something to write' ++++++ flake8-3.6.0.tar.gz -> flake8-3.7.5.tar.gz ++++++ ++++ 3959 lines of diff (skipped) ++++++ remove_mock_dependency.patch ++++++ --- /var/tmp/diff_new_pack.ivjC1D/_old 2019-02-14 14:12:18.456252767 +0100 +++ /var/tmp/diff_new_pack.ivjC1D/_new 2019-02-14 14:12:18.456252767 +0100 @@ -1,5 +1,7 @@ ---- a/tests/integration/test_checker.py -+++ b/tests/integration/test_checker.py +Index: flake8-3.7.5/tests/integration/test_checker.py +=================================================================== +--- flake8-3.7.5.orig/tests/integration/test_checker.py ++++ flake8-3.7.5/tests/integration/test_checker.py @@ -1,5 +1,8 @@ """Integration tests for the checker submodule.""" -import mock @@ -10,8 +12,10 @@ import pytest from flake8 import checker ---- a/tests/unit/test_application.py -+++ b/tests/unit/test_application.py +Index: flake8-3.7.5/tests/unit/test_application.py +=================================================================== +--- flake8-3.7.5.orig/tests/unit/test_application.py ++++ flake8-3.7.5/tests/unit/test_application.py @@ -1,7 +1,10 @@ """Tests for the Application class.""" import optparse @@ -23,9 +27,11 @@ + import mock import pytest - from flake8 import exceptions ---- a/tests/unit/test_base_formatter.py -+++ b/tests/unit/test_base_formatter.py + from flake8.main import application as app +Index: flake8-3.7.5/tests/unit/test_base_formatter.py +=================================================================== +--- flake8-3.7.5.orig/tests/unit/test_base_formatter.py ++++ flake8-3.7.5/tests/unit/test_base_formatter.py @@ -1,7 +1,10 @@ """Tests for the BaseFormatter object.""" import optparse @@ -38,8 +44,10 @@ import pytest from flake8 import style_guide ---- a/tests/unit/test_checker_manager.py -+++ b/tests/unit/test_checker_manager.py +Index: flake8-3.7.5/tests/unit/test_checker_manager.py +=================================================================== +--- flake8-3.7.5.orig/tests/unit/test_checker_manager.py ++++ flake8-3.7.5/tests/unit/test_checker_manager.py @@ -1,7 +1,10 @@ """Tests for the Manager object for FileCheckers.""" import errno @@ -52,8 +60,10 @@ import pytest from flake8 import checker ---- a/tests/unit/test_config_file_finder.py -+++ b/tests/unit/test_config_file_finder.py +Index: flake8-3.7.5/tests/unit/test_config_file_finder.py +=================================================================== +--- flake8-3.7.5.orig/tests/unit/test_config_file_finder.py ++++ flake8-3.7.5/tests/unit/test_config_file_finder.py @@ -4,7 +4,10 @@ import configparser import os import sys @@ -66,20 +76,25 @@ import pytest from flake8.options import config ---- a/tests/unit/test_debug.py -+++ b/tests/unit/test_debug.py -@@ -1,5 +1,8 @@ +Index: flake8-3.7.5/tests/unit/test_debug.py +=================================================================== +--- flake8-3.7.5.orig/tests/unit/test_debug.py ++++ flake8-3.7.5/tests/unit/test_debug.py +@@ -1,6 +1,9 @@ """Tests for our debugging module.""" + import entrypoints -import mock +try: + import unittest.mock as mock +except ImportError: + import mock import pytest - import setuptools ---- a/tests/unit/test_file_checker.py -+++ b/tests/unit/test_file_checker.py + from flake8.main import debug +Index: flake8-3.7.5/tests/unit/test_file_checker.py +=================================================================== +--- flake8-3.7.5.orig/tests/unit/test_file_checker.py ++++ flake8-3.7.5/tests/unit/test_file_checker.py @@ -1,5 +1,8 @@ """Unit tests for the FileChecker class.""" -import mock @@ -87,14 +102,16 @@ + import unittest.mock as mock +except ImportError: + import mock + import pytest - from flake8 import checker - ---- a/tests/unit/test_file_processor.py -+++ b/tests/unit/test_file_processor.py -@@ -5,7 +5,10 @@ import tokenize - - from flake8 import processor + import flake8 +Index: flake8-3.7.5/tests/unit/test_file_processor.py +=================================================================== +--- flake8-3.7.5.orig/tests/unit/test_file_processor.py ++++ flake8-3.7.5/tests/unit/test_file_processor.py +@@ -2,7 +2,10 @@ + import ast + import tokenize -import mock +try: @@ -103,9 +120,11 @@ + import mock import pytest - ---- a/tests/unit/test_get_local_plugins.py -+++ b/tests/unit/test_get_local_plugins.py + from flake8 import processor +Index: flake8-3.7.5/tests/unit/test_get_local_plugins.py +=================================================================== +--- flake8-3.7.5.orig/tests/unit/test_get_local_plugins.py ++++ flake8-3.7.5/tests/unit/test_get_local_plugins.py @@ -1,5 +1,8 @@ """Tests for get_local_plugins.""" -import mock @@ -116,8 +135,10 @@ from flake8.options import config ---- a/tests/unit/test_git.py -+++ b/tests/unit/test_git.py +Index: flake8-3.7.5/tests/unit/test_git.py +=================================================================== +--- flake8-3.7.5.orig/tests/unit/test_git.py ++++ flake8-3.7.5/tests/unit/test_git.py @@ -1,5 +1,8 @@ """Tests around functionality in the git integration.""" -import mock @@ -128,8 +149,10 @@ import pytest from flake8.main import git ---- a/tests/unit/test_legacy_api.py -+++ b/tests/unit/test_legacy_api.py +Index: flake8-3.7.5/tests/unit/test_legacy_api.py +=================================================================== +--- flake8-3.7.5.orig/tests/unit/test_legacy_api.py ++++ flake8-3.7.5/tests/unit/test_legacy_api.py @@ -1,5 +1,8 @@ """Tests for Flake8's legacy API.""" -import mock @@ -140,8 +163,10 @@ import pytest from flake8.api import legacy as api ---- a/tests/unit/test_merged_config_parser.py -+++ b/tests/unit/test_merged_config_parser.py +Index: flake8-3.7.5/tests/unit/test_merged_config_parser.py +=================================================================== +--- flake8-3.7.5.orig/tests/unit/test_merged_config_parser.py ++++ flake8-3.7.5/tests/unit/test_merged_config_parser.py @@ -1,7 +1,10 @@ """Unit tests for flake8.options.config.MergedConfigParser.""" import os @@ -154,8 +179,10 @@ import pytest from flake8.options import config ---- a/tests/unit/test_option.py -+++ b/tests/unit/test_option.py +Index: flake8-3.7.5/tests/unit/test_option.py +=================================================================== +--- flake8-3.7.5.orig/tests/unit/test_option.py ++++ flake8-3.7.5/tests/unit/test_option.py @@ -1,5 +1,8 @@ """Unit tests for flake8.options.manager.Option.""" -import mock @@ -166,8 +193,10 @@ import pytest from flake8.options import manager ---- a/tests/unit/test_option_manager.py -+++ b/tests/unit/test_option_manager.py +Index: flake8-3.7.5/tests/unit/test_option_manager.py +=================================================================== +--- flake8-3.7.5.orig/tests/unit/test_option_manager.py ++++ flake8-3.7.5/tests/unit/test_option_manager.py @@ -2,7 +2,10 @@ import optparse import os @@ -180,8 +209,10 @@ import pytest from flake8 import utils ---- a/tests/unit/test_plugin.py -+++ b/tests/unit/test_plugin.py +Index: flake8-3.7.5/tests/unit/test_plugin.py +=================================================================== +--- flake8-3.7.5.orig/tests/unit/test_plugin.py ++++ flake8-3.7.5/tests/unit/test_plugin.py @@ -1,7 +1,10 @@ """Tests for flake8.plugins.manager.Plugin.""" import optparse @@ -194,8 +225,10 @@ import pytest from flake8 import exceptions ---- a/tests/unit/test_plugin_manager.py -+++ b/tests/unit/test_plugin_manager.py +Index: flake8-3.7.5/tests/unit/test_plugin_manager.py +=================================================================== +--- flake8-3.7.5.orig/tests/unit/test_plugin_manager.py ++++ flake8-3.7.5/tests/unit/test_plugin_manager.py @@ -1,5 +1,8 @@ """Tests for flake8.plugins.manager.PluginManager.""" -import mock @@ -206,8 +239,10 @@ from flake8.plugins import manager ---- a/tests/unit/test_plugin_type_manager.py -+++ b/tests/unit/test_plugin_type_manager.py +Index: flake8-3.7.5/tests/unit/test_plugin_type_manager.py +=================================================================== +--- flake8-3.7.5.orig/tests/unit/test_plugin_type_manager.py ++++ flake8-3.7.5/tests/unit/test_plugin_type_manager.py @@ -1,7 +1,10 @@ """Tests for flake8.plugins.manager.PluginTypeManager.""" import sys @@ -220,8 +255,10 @@ import pytest from flake8 import exceptions ---- a/tests/unit/test_style_guide.py -+++ b/tests/unit/test_style_guide.py +Index: flake8-3.7.5/tests/unit/test_style_guide.py +=================================================================== +--- flake8-3.7.5.orig/tests/unit/test_style_guide.py ++++ flake8-3.7.5/tests/unit/test_style_guide.py @@ -1,7 +1,10 @@ """Tests for the flake8.style_guide.StyleGuide class.""" import optparse @@ -233,9 +270,11 @@ + import mock import pytest - from flake8 import style_guide ---- a/tests/unit/test_utils.py -+++ b/tests/unit/test_utils.py + from flake8 import statistics +Index: flake8-3.7.5/tests/unit/test_utils.py +=================================================================== +--- flake8-3.7.5.orig/tests/unit/test_utils.py ++++ flake8-3.7.5/tests/unit/test_utils.py @@ -1,7 +1,10 @@ """Tests for flake8's utils module.""" import os @@ -247,9 +286,11 @@ + import mock import pytest - from flake8 import utils ---- a/tests/unit/test_violation.py -+++ b/tests/unit/test_violation.py + from flake8 import exceptions +Index: flake8-3.7.5/tests/unit/test_violation.py +=================================================================== +--- flake8-3.7.5.orig/tests/unit/test_violation.py ++++ flake8-3.7.5/tests/unit/test_violation.py @@ -1,5 +1,8 @@ """Tests for the flake8.style_guide.Violation class.""" -import mock @@ -260,19 +301,40 @@ import pytest from flake8 import style_guide ---- a/setup.py -+++ b/setup.py -@@ -11,8 +11,12 @@ sys.path.insert(0, os.path.join(os.path. +Index: flake8-3.7.5/setup.py +=================================================================== +--- flake8-3.7.5.orig/setup.py ++++ flake8-3.7.5/setup.py +@@ -11,6 +11,12 @@ sys.path.insert(0, os.path.join(os.path. import flake8 +PY2 = sys.version_info[0] == 2 - --tests_require = ['mock >= 2.0.0', 'pytest'] +tests_require = ['pytest'] + +if PY2: + tests_require.append('mock >= 2.0.0') ++ # NOTE(sigmavirus24): When updating these requirements, update them in # setup.cfg as well. +@@ -147,4 +153,5 @@ setuptools.setup( + "Topic :: Software Development :: Libraries :: Python Modules", + "Topic :: Software Development :: Quality Assurance", + ], ++ tests_require=tests_require, + ) +Index: flake8-3.7.5/tests/integration/test_main.py +=================================================================== +--- flake8-3.7.5.orig/tests/integration/test_main.py ++++ flake8-3.7.5/tests/integration/test_main.py +@@ -1,5 +1,8 @@ + """Integration tests for the main entrypoint of flake8.""" +-import mock ++try: ++ import unittest.mock as mock ++except ImportError: ++ import mock + + from flake8 import utils + from flake8.main import application
