Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package python-flake8 for openSUSE:Factory checked in at 2021-09-26 21:48:38 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/python-flake8 (Old) and /work/SRC/openSUSE:Factory/.python-flake8.new.1899 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-flake8" Sun Sep 26 21:48:38 2021 rev:35 rq:921252 version:3.9.2 Changes: -------- --- /work/SRC/openSUSE:Factory/python-flake8/python-flake8.changes 2021-06-11 22:30:35.182121092 +0200 +++ /work/SRC/openSUSE:Factory/.python-flake8.new.1899/python-flake8.changes 2021-09-26 21:49:28.886834651 +0200 @@ -1,0 +2,6 @@ +Fri Sep 24 09:06:44 UTC 2021 - Steve Kowalik <[email protected]> + +- Add ignore-selectable-groups-warning.patch: + * Ignore unfixed warning. + +------------------------------------------------------------------- New: ---- ignore-selectable-groups-warning.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ python-flake8.spec ++++++ --- /var/tmp/diff_new_pack.jqNNP0/_old 2021-09-26 21:49:29.274835131 +0200 +++ /var/tmp/diff_new_pack.jqNNP0/_new 2021-09-26 21:49:29.278835136 +0200 @@ -26,6 +26,7 @@ URL: https://gitlab.com/pycqa/flake8 Source: https://files.pythonhosted.org/packages/source/f/flake8/flake8-%{version}.tar.gz Patch0: fix-mock-patch-with-python3.4.patch +Patch1: ignore-selectable-groups-warning.patch BuildRequires: %{python_module setuptools} BuildRequires: fdupes BuildRequires: python-rpm-macros ++++++ ignore-selectable-groups-warning.patch ++++++ >From d34581b83f75e12e2c021577aa2523eea8a9b590 Mon Sep 17 00:00:00 2001 From: Anthony Sottile <[email protected]> Date: Sun, 15 Aug 2021 18:47:16 -0400 Subject: [PATCH] test using python3.10 --- .github/workflows/main.yml | 3 +++ pytest.ini | 4 +++- tests/integration/test_main.py | 8 ++++++-- tests/unit/test_plugin_type_manager.py | 21 +++++++-------------- 4 files changed, 19 insertions(+), 17 deletions(-) Index: flake8-3.9.2/pytest.ini =================================================================== --- flake8-3.9.2.orig/pytest.ini +++ flake8-3.9.2/pytest.ini @@ -8,3 +8,4 @@ filterwarnings = # python3 raises this when importing setuptools ignore:the imp module is deprecated in favour of importlib.*:PendingDeprecationWarning ignore:the imp module is deprecated in favour of importlib.*:DeprecationWarning + ignore:SelectableGroups:DeprecationWarning
