Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package python-flake8-quotes for 
openSUSE:Factory checked in at 2023-01-03 15:05:05
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-flake8-quotes (Old)
 and      /work/SRC/openSUSE:Factory/.python-flake8-quotes.new.1563 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "python-flake8-quotes"

Tue Jan  3 15:05:05 2023 rev:9 rq:1046241 version:3.3.2

Changes:
--------
--- 
/work/SRC/openSUSE:Factory/python-flake8-quotes/python-flake8-quotes.changes    
    2022-12-19 14:08:19.790684755 +0100
+++ 
/work/SRC/openSUSE:Factory/.python-flake8-quotes.new.1563/python-flake8-quotes.changes
      2023-01-03 15:05:21.774509002 +0100
@@ -1,0 +2,7 @@
+Mon Jan  2 16:39:55 UTC 2023 - Dirk Müller <[email protected]>
+
+- update to 3.3.2:
+  * support flake8 6.0
+- drop support-flake8-6.patch (upstream)
+
+-------------------------------------------------------------------

Old:
----
  flake8-quotes-3.3.1.tar.gz
  support-flake8-6.patch

New:
----
  flake8-quotes-3.3.2.tar.gz

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

Other differences:
------------------
++++++ python-flake8-quotes.spec ++++++
--- /var/tmp/diff_new_pack.fGZ1Fb/_old  2023-01-03 15:05:22.198511476 +0100
+++ /var/tmp/diff_new_pack.fGZ1Fb/_new  2023-01-03 15:05:22.206511523 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package python-flake8-quotes
 #
-# Copyright (c) 2022 SUSE LLC
+# Copyright (c) 2023 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -19,15 +19,14 @@
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 %global skip_python2 1
 Name:           python-flake8-quotes
-Version:        3.3.1
+Version:        3.3.2
 Release:        0
 Summary:        Flake8 lint for quotes
 License:        MIT
 Group:          Development/Languages/Python
 URL:            https://github.com/zheller/flake8-quotes/
 Source:         
https://files.pythonhosted.org/packages/source/f/flake8-quotes/flake8-quotes-%{version}.tar.gz
-Patch0:         support-flake8-6.patch
-BuildRequires:  %{python_module flake8 >= 3.3.0}
+BuildRequires:  %{python_module flake8 >= 3.5.0}
 BuildRequires:  %{python_module pytest}
 BuildRequires:  %{python_module setuptools}
 BuildRequires:  fdupes
@@ -41,7 +40,6 @@
 
 %prep
 %setup -q -n flake8-quotes-%{version}
-%patch0 -p1
 
 %build
 %python_build

++++++ flake8-quotes-3.3.1.tar.gz -> flake8-quotes-3.3.2.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/flake8-quotes-3.3.1/PKG-INFO 
new/flake8-quotes-3.3.2/PKG-INFO
--- old/flake8-quotes-3.3.1/PKG-INFO    2021-10-19 09:07:04.000000000 +0200
+++ new/flake8-quotes-3.3.2/PKG-INFO    2022-12-19 17:47:30.664296900 +0100
@@ -1,114 +1,11 @@
-Metadata-Version: 1.1
+Metadata-Version: 2.1
 Name: flake8-quotes
-Version: 3.3.1
+Version: 3.3.2
 Summary: Flake8 lint for quotes.
 Home-page: http://github.com/zheller/flake8-quotes/
 Author: Zachary Wright Heller
 Author-email: [email protected]
 License: MIT
-Description: Flake8 Extension to lint for quotes.
-        ===========================================
-        
-        .. image:: 
https://travis-ci.org/zheller/flake8-quotes.svg?branch=master
-           :target: https://travis-ci.org/zheller/flake8-quotes
-           :alt: Build Status
-        
-        Major update in 2.0.0
-        ---------------------
-        We automatically encourage avoiding escaping quotes as per `PEP 8 
<https://www.python.org/dev/peps/pep-0008/#string-quotes>`_. To disable this, 
use ``--no-avoid-escape`` (can be used in configuration file via 
``avoid-escape``).
-        
-        Deprecation notice in 0.3.0
-        ---------------------------
-        To anticipate multiline support, we are renaming ``--quotes`` to 
``--inline-quotes``. Please adjust your configurations appropriately.
-        
-        Usage
-        -----
-        
-        If you are using flake8 it's as easy as:
-        
-        .. code:: shell
-        
-            pip install flake8-quotes
-        
-        Now you don't need to worry about people like @sectioneight constantly
-        complaining that you are using double-quotes and not single-quotes.
-        
-        Warnings
-        --------
-        
-        This package adds flake8 warnings with the prefix ``Q0``. You might 
want to
-        enable this warning inside your flake8 configuration file. Typically 
that
-        will be ``.flake8`` inside the root folder of your project.
-        
-        .. code:: ini
-        
-            select = Q0
-        
-        The current set of warnings is:
-        
-        ==== 
=========================================================================
-        Code Description
-        ---- 
-------------------------------------------------------------------------
-        Q000 Remove bad quotes
-        Q001 Remove bad quotes from multiline string
-        Q002 Remove bad quotes from docstring
-        Q003 Change outer quotes to avoid escaping inner quotes
-        ==== 
=========================================================================
-        
-        Configuration
-        -------------
-        
-        By default, we expect single quotes (') and look for unwanted double 
quotes ("). To expect double quotes (") and find unwanted single quotes ('), 
use the CLI option:
-        
-        .. code:: shell
-        
-            flake8 --inline-quotes '"'
-            # We also support "double" and "single"
-            # flake8 --inline-quotes 'double'
-            #
-            # We also support configuration for multiline quotes
-            # flake8 --inline-quotes '"' --multiline-quotes "'"
-            # We also support "'''"
-            # flake8 --inline-quotes '"' --multiline-quotes "'''"
-            #
-            # We also support docstring quotes similarly
-            # flake8 --inline-quotes '"' --docstring-quotes "'"
-            # flake8 --inline-quotes '"' --docstring-quotes "'''"
-        
-            # We also support disabling escaping quotes
-            # flake8 --no-avoid-escape
-        
-        or configuration option in `tox.ini`/`setup.cfg`.
-        
-        .. code:: ini
-        
-            [flake8]
-            inline-quotes = "
-            # We also support "double" and "single"
-            # inline-quotes = double
-            #
-            # We also support configuration for multiline quotes
-            # multiline-quotes = '
-            # We also support "'''"
-            # multiline-quotes = '''
-            #
-            # We also support docstring quotes similarly
-            # docstring-quotes = '
-            # docstring-quotes = '''
-            #
-            # We also support disabling escaping quotes
-            # avoid-escape = False
-        
-        Caveats
-        -------
-        
-        We follow the `PEP8 conventions 
<https://www.python.org/dev/peps/pep-0008/#string-quotes>`_ to avoid 
backslashes in the string. So, no matter what configuration you are using 
(single or double quotes) these are always valid strings
-        
-        .. code:: python
-        
-            s = 'double "quotes" wrapped in singles are ignored'
-            s = "single 'quotes' wrapped in doubles are ignored"
-        
 Keywords: flake8 lint quotes
 Platform: UNKNOWN
 Classifier: Development Status :: 5 - Production/Stable
@@ -129,3 +26,109 @@
 Classifier: Programming Language :: Python :: 3.11
 Classifier: Topic :: Software Development :: Libraries :: Python Modules
 Classifier: Topic :: Software Development :: Quality Assurance
+License-File: LICENSE
+
+Flake8 Extension to lint for quotes.
+===========================================
+
+.. image:: https://travis-ci.org/zheller/flake8-quotes.svg?branch=master
+   :target: https://travis-ci.org/zheller/flake8-quotes
+   :alt: Build Status
+
+Major update in 2.0.0
+---------------------
+We automatically encourage avoiding escaping quotes as per `PEP 8 
<https://www.python.org/dev/peps/pep-0008/#string-quotes>`_. To disable this, 
use ``--no-avoid-escape`` (can be used in configuration file via 
``avoid-escape``).
+
+Deprecation notice in 0.3.0
+---------------------------
+To anticipate multiline support, we are renaming ``--quotes`` to 
``--inline-quotes``. Please adjust your configurations appropriately.
+
+Usage
+-----
+
+If you are using flake8 it's as easy as:
+
+.. code:: shell
+
+    pip install flake8-quotes
+
+Now you don't need to worry about people like @sectioneight constantly
+complaining that you are using double-quotes and not single-quotes.
+
+Warnings
+--------
+
+This package adds flake8 warnings with the prefix ``Q0``. You might want to
+enable this warning inside your flake8 configuration file. Typically that
+will be ``.flake8`` inside the root folder of your project.
+
+.. code:: ini
+
+    select = Q0
+
+The current set of warnings is:
+
+==== =========================================================================
+Code Description
+---- -------------------------------------------------------------------------
+Q000 Remove bad quotes
+Q001 Remove bad quotes from multiline string
+Q002 Remove bad quotes from docstring
+Q003 Change outer quotes to avoid escaping inner quotes
+==== =========================================================================
+
+Configuration
+-------------
+
+By default, we expect single quotes (') and look for unwanted double quotes 
("). To expect double quotes (") and find unwanted single quotes ('), use the 
CLI option:
+
+.. code:: shell
+
+    flake8 --inline-quotes '"'
+    # We also support "double" and "single"
+    # flake8 --inline-quotes 'double'
+    #
+    # We also support configuration for multiline quotes
+    # flake8 --inline-quotes '"' --multiline-quotes "'"
+    # We also support "'''"
+    # flake8 --inline-quotes '"' --multiline-quotes "'''"
+    #
+    # We also support docstring quotes similarly
+    # flake8 --inline-quotes '"' --docstring-quotes "'"
+    # flake8 --inline-quotes '"' --docstring-quotes "'''"
+
+    # We also support disabling escaping quotes
+    # flake8 --no-avoid-escape
+
+or configuration option in `tox.ini`/`setup.cfg`.
+
+.. code:: ini
+
+    [flake8]
+    inline-quotes = "
+    # We also support "double" and "single"
+    # inline-quotes = double
+    #
+    # We also support configuration for multiline quotes
+    # multiline-quotes = '
+    # We also support "'''"
+    # multiline-quotes = '''
+    #
+    # We also support docstring quotes similarly
+    # docstring-quotes = '
+    # docstring-quotes = '''
+    #
+    # We also support disabling escaping quotes
+    # avoid-escape = False
+
+Caveats
+-------
+
+We follow the `PEP8 conventions 
<https://www.python.org/dev/peps/pep-0008/#string-quotes>`_ to avoid 
backslashes in the string. So, no matter what configuration you are using 
(single or double quotes) these are always valid strings
+
+.. code:: python
+
+    s = 'double "quotes" wrapped in singles are ignored'
+    s = "single 'quotes' wrapped in doubles are ignored"
+
+
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/flake8-quotes-3.3.1/flake8_quotes/__about__.py 
new/flake8-quotes-3.3.2/flake8_quotes/__about__.py
--- old/flake8-quotes-3.3.1/flake8_quotes/__about__.py  2021-10-19 
09:06:59.000000000 +0200
+++ new/flake8-quotes-3.3.2/flake8_quotes/__about__.py  2022-12-19 
17:44:44.000000000 +0100
@@ -1 +1 @@
-__version__ = '3.3.1'
+__version__ = '3.3.2'
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/flake8-quotes-3.3.1/flake8_quotes/__init__.py 
new/flake8-quotes-3.3.2/flake8_quotes/__init__.py
--- old/flake8-quotes-3.3.1/flake8_quotes/__init__.py   2021-10-15 
03:56:57.000000000 +0200
+++ new/flake8-quotes-3.3.2/flake8_quotes/__init__.py   2022-12-19 
17:30:40.000000000 +0100
@@ -107,19 +107,19 @@
     @classmethod
     def add_options(cls, parser):
         cls._register_opt(parser, '--quotes', action='store',
-                          parse_from_config=True, type='choice',
+                          parse_from_config=True,
                           choices=sorted(cls.INLINE_QUOTES.keys()),
                           help='Deprecated alias for `--inline-quotes`')
         cls._register_opt(parser, '--inline-quotes', default="'",
-                          action='store', parse_from_config=True, 
type='choice',
+                          action='store', parse_from_config=True,
                           choices=sorted(cls.INLINE_QUOTES.keys()),
                           help="Quote to expect in all files (default: ')")
         cls._register_opt(parser, '--multiline-quotes', default=None, 
action='store',
-                          parse_from_config=True, type='choice',
+                          parse_from_config=True,
                           choices=sorted(cls.MULTILINE_QUOTES.keys()),
                           help='Quote to expect in all files (default: """)')
         cls._register_opt(parser, '--docstring-quotes', default=None, 
action='store',
-                          parse_from_config=True, type='choice',
+                          parse_from_config=True,
                           choices=sorted(cls.DOCSTRING_QUOTES.keys()),
                           help='Quote to expect in all files (default: """)')
         cls._register_opt(parser, '--avoid-escape', default=None, 
action='store_true',
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/flake8-quotes-3.3.1/flake8_quotes.egg-info/PKG-INFO 
new/flake8-quotes-3.3.2/flake8_quotes.egg-info/PKG-INFO
--- old/flake8-quotes-3.3.1/flake8_quotes.egg-info/PKG-INFO     2021-10-19 
09:07:04.000000000 +0200
+++ new/flake8-quotes-3.3.2/flake8_quotes.egg-info/PKG-INFO     2022-12-19 
17:47:30.000000000 +0100
@@ -1,114 +1,11 @@
-Metadata-Version: 1.1
+Metadata-Version: 2.1
 Name: flake8-quotes
-Version: 3.3.1
+Version: 3.3.2
 Summary: Flake8 lint for quotes.
 Home-page: http://github.com/zheller/flake8-quotes/
 Author: Zachary Wright Heller
 Author-email: [email protected]
 License: MIT
-Description: Flake8 Extension to lint for quotes.
-        ===========================================
-        
-        .. image:: 
https://travis-ci.org/zheller/flake8-quotes.svg?branch=master
-           :target: https://travis-ci.org/zheller/flake8-quotes
-           :alt: Build Status
-        
-        Major update in 2.0.0
-        ---------------------
-        We automatically encourage avoiding escaping quotes as per `PEP 8 
<https://www.python.org/dev/peps/pep-0008/#string-quotes>`_. To disable this, 
use ``--no-avoid-escape`` (can be used in configuration file via 
``avoid-escape``).
-        
-        Deprecation notice in 0.3.0
-        ---------------------------
-        To anticipate multiline support, we are renaming ``--quotes`` to 
``--inline-quotes``. Please adjust your configurations appropriately.
-        
-        Usage
-        -----
-        
-        If you are using flake8 it's as easy as:
-        
-        .. code:: shell
-        
-            pip install flake8-quotes
-        
-        Now you don't need to worry about people like @sectioneight constantly
-        complaining that you are using double-quotes and not single-quotes.
-        
-        Warnings
-        --------
-        
-        This package adds flake8 warnings with the prefix ``Q0``. You might 
want to
-        enable this warning inside your flake8 configuration file. Typically 
that
-        will be ``.flake8`` inside the root folder of your project.
-        
-        .. code:: ini
-        
-            select = Q0
-        
-        The current set of warnings is:
-        
-        ==== 
=========================================================================
-        Code Description
-        ---- 
-------------------------------------------------------------------------
-        Q000 Remove bad quotes
-        Q001 Remove bad quotes from multiline string
-        Q002 Remove bad quotes from docstring
-        Q003 Change outer quotes to avoid escaping inner quotes
-        ==== 
=========================================================================
-        
-        Configuration
-        -------------
-        
-        By default, we expect single quotes (') and look for unwanted double 
quotes ("). To expect double quotes (") and find unwanted single quotes ('), 
use the CLI option:
-        
-        .. code:: shell
-        
-            flake8 --inline-quotes '"'
-            # We also support "double" and "single"
-            # flake8 --inline-quotes 'double'
-            #
-            # We also support configuration for multiline quotes
-            # flake8 --inline-quotes '"' --multiline-quotes "'"
-            # We also support "'''"
-            # flake8 --inline-quotes '"' --multiline-quotes "'''"
-            #
-            # We also support docstring quotes similarly
-            # flake8 --inline-quotes '"' --docstring-quotes "'"
-            # flake8 --inline-quotes '"' --docstring-quotes "'''"
-        
-            # We also support disabling escaping quotes
-            # flake8 --no-avoid-escape
-        
-        or configuration option in `tox.ini`/`setup.cfg`.
-        
-        .. code:: ini
-        
-            [flake8]
-            inline-quotes = "
-            # We also support "double" and "single"
-            # inline-quotes = double
-            #
-            # We also support configuration for multiline quotes
-            # multiline-quotes = '
-            # We also support "'''"
-            # multiline-quotes = '''
-            #
-            # We also support docstring quotes similarly
-            # docstring-quotes = '
-            # docstring-quotes = '''
-            #
-            # We also support disabling escaping quotes
-            # avoid-escape = False
-        
-        Caveats
-        -------
-        
-        We follow the `PEP8 conventions 
<https://www.python.org/dev/peps/pep-0008/#string-quotes>`_ to avoid 
backslashes in the string. So, no matter what configuration you are using 
(single or double quotes) these are always valid strings
-        
-        .. code:: python
-        
-            s = 'double "quotes" wrapped in singles are ignored'
-            s = "single 'quotes' wrapped in doubles are ignored"
-        
 Keywords: flake8 lint quotes
 Platform: UNKNOWN
 Classifier: Development Status :: 5 - Production/Stable
@@ -129,3 +26,109 @@
 Classifier: Programming Language :: Python :: 3.11
 Classifier: Topic :: Software Development :: Libraries :: Python Modules
 Classifier: Topic :: Software Development :: Quality Assurance
+License-File: LICENSE
+
+Flake8 Extension to lint for quotes.
+===========================================
+
+.. image:: https://travis-ci.org/zheller/flake8-quotes.svg?branch=master
+   :target: https://travis-ci.org/zheller/flake8-quotes
+   :alt: Build Status
+
+Major update in 2.0.0
+---------------------
+We automatically encourage avoiding escaping quotes as per `PEP 8 
<https://www.python.org/dev/peps/pep-0008/#string-quotes>`_. To disable this, 
use ``--no-avoid-escape`` (can be used in configuration file via 
``avoid-escape``).
+
+Deprecation notice in 0.3.0
+---------------------------
+To anticipate multiline support, we are renaming ``--quotes`` to 
``--inline-quotes``. Please adjust your configurations appropriately.
+
+Usage
+-----
+
+If you are using flake8 it's as easy as:
+
+.. code:: shell
+
+    pip install flake8-quotes
+
+Now you don't need to worry about people like @sectioneight constantly
+complaining that you are using double-quotes and not single-quotes.
+
+Warnings
+--------
+
+This package adds flake8 warnings with the prefix ``Q0``. You might want to
+enable this warning inside your flake8 configuration file. Typically that
+will be ``.flake8`` inside the root folder of your project.
+
+.. code:: ini
+
+    select = Q0
+
+The current set of warnings is:
+
+==== =========================================================================
+Code Description
+---- -------------------------------------------------------------------------
+Q000 Remove bad quotes
+Q001 Remove bad quotes from multiline string
+Q002 Remove bad quotes from docstring
+Q003 Change outer quotes to avoid escaping inner quotes
+==== =========================================================================
+
+Configuration
+-------------
+
+By default, we expect single quotes (') and look for unwanted double quotes 
("). To expect double quotes (") and find unwanted single quotes ('), use the 
CLI option:
+
+.. code:: shell
+
+    flake8 --inline-quotes '"'
+    # We also support "double" and "single"
+    # flake8 --inline-quotes 'double'
+    #
+    # We also support configuration for multiline quotes
+    # flake8 --inline-quotes '"' --multiline-quotes "'"
+    # We also support "'''"
+    # flake8 --inline-quotes '"' --multiline-quotes "'''"
+    #
+    # We also support docstring quotes similarly
+    # flake8 --inline-quotes '"' --docstring-quotes "'"
+    # flake8 --inline-quotes '"' --docstring-quotes "'''"
+
+    # We also support disabling escaping quotes
+    # flake8 --no-avoid-escape
+
+or configuration option in `tox.ini`/`setup.cfg`.
+
+.. code:: ini
+
+    [flake8]
+    inline-quotes = "
+    # We also support "double" and "single"
+    # inline-quotes = double
+    #
+    # We also support configuration for multiline quotes
+    # multiline-quotes = '
+    # We also support "'''"
+    # multiline-quotes = '''
+    #
+    # We also support docstring quotes similarly
+    # docstring-quotes = '
+    # docstring-quotes = '''
+    #
+    # We also support disabling escaping quotes
+    # avoid-escape = False
+
+Caveats
+-------
+
+We follow the `PEP8 conventions 
<https://www.python.org/dev/peps/pep-0008/#string-quotes>`_ to avoid 
backslashes in the string. So, no matter what configuration you are using 
(single or double quotes) these are always valid strings
+
+.. code:: python
+
+    s = 'double "quotes" wrapped in singles are ignored'
+    s = "single 'quotes' wrapped in doubles are ignored"
+
+

Reply via email to