Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package python-pep8-naming for openSUSE:Factory checked in at 2023-01-02 15:02:25 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/python-pep8-naming (Old) and /work/SRC/openSUSE:Factory/.python-pep8-naming.new.1563 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-pep8-naming" Mon Jan 2 15:02:25 2023 rev:12 rq:1046120 version:0.13.3 Changes: -------- --- /work/SRC/openSUSE:Factory/python-pep8-naming/python-pep8-naming.changes 2022-09-19 16:03:46.562220771 +0200 +++ /work/SRC/openSUSE:Factory/.python-pep8-naming.new.1563/python-pep8-naming.changes 2023-01-02 15:02:32.049474292 +0100 @@ -1,0 +2,7 @@ +Mon Jan 2 09:42:17 UTC 2023 - Dirk Müller <dmuel...@suse.com> + +- update to 0.13.3: + * Formally require flake8 5.0.0 or later. + * Add support for Python 3.11. + +------------------------------------------------------------------- Old: ---- pep8-naming-0.13.2.tar.gz New: ---- pep8-naming-0.13.3.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ python-pep8-naming.spec ++++++ --- /var/tmp/diff_new_pack.a9xlql/_old 2023-01-02 15:02:33.025479777 +0100 +++ /var/tmp/diff_new_pack.a9xlql/_new 2023-01-02 15:02:33.041479867 +0100 @@ -1,7 +1,7 @@ # # spec file for package python-pep8-naming # -# 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 @@ -18,7 +18,7 @@ %{?!python_module:%define python_module() python-%{**} python3-%{**}} Name: python-pep8-naming -Version: 0.13.2 +Version: 0.13.3 Release: 0 Summary: Flake8 plugin for checking PEP-8 naming conventions License: MIT @@ -28,13 +28,13 @@ BuildRequires: %{python_module setuptools} BuildRequires: fdupes BuildRequires: python-rpm-macros -Requires: python-flake8 >= 3.9.1 +Requires: python-flake8 >= 5.0.0 Requires: python-flake8-polyfill >= 1.0.2 Requires: python-setuptools BuildArch: noarch # SECTION test requirements +BuildRequires: %{python_module flake8 >= 5.0.0} BuildRequires: %{python_module flake8-polyfill >= 1.0.2} -BuildRequires: %{python_module flake8 >= 3.9.1} # /SECTION %python_subpackages ++++++ pep8-naming-0.13.2.tar.gz -> pep8-naming-0.13.3.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/pep8-naming-0.13.2/CHANGELOG.rst new/pep8-naming-0.13.3/CHANGELOG.rst --- old/pep8-naming-0.13.2/CHANGELOG.rst 2022-08-19 21:22:01.000000000 +0200 +++ new/pep8-naming-0.13.3/CHANGELOG.rst 2022-12-19 21:43:16.000000000 +0100 @@ -1,6 +1,12 @@ Changes ======= +0.13.3 - 2022-12-19 +------------------- + +* Formally require flake8 5.0.0 or later. +* Add support for Python 3.11. + 0.13.2 - 2022-08-19 ------------------- diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/pep8-naming-0.13.2/PKG-INFO new/pep8-naming-0.13.3/PKG-INFO --- old/pep8-naming-0.13.2/PKG-INFO 2022-08-19 21:22:51.061220200 +0200 +++ new/pep8-naming-0.13.3/PKG-INFO 2022-12-19 21:43:50.878376200 +0100 @@ -1,6 +1,6 @@ Metadata-Version: 2.1 Name: pep8-naming -Version: 0.13.2 +Version: 0.13.3 Summary: Check PEP-8 naming conventions, plugin for flake8 Home-page: https://github.com/PyCQA/pep8-naming Author: Florent Xicluna @@ -22,6 +22,7 @@ Classifier: Programming Language :: Python :: 3.8 Classifier: Programming Language :: Python :: 3.9 Classifier: Programming Language :: Python :: 3.10 +Classifier: Programming Language :: Python :: 3.11 Classifier: Programming Language :: Python :: 3 :: Only Classifier: Topic :: Software Development :: Libraries :: Python Modules Classifier: Topic :: Software Development :: Quality Assurance diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/pep8-naming-0.13.2/run_tests.py new/pep8-naming-0.13.3/run_tests.py --- old/pep8-naming-0.13.2/run_tests.py 2022-08-19 17:45:35.000000000 +0200 +++ new/pep8-naming-0.13.3/run_tests.py 2022-12-16 21:18:08.000000000 +0100 @@ -72,10 +72,17 @@ def parse_options(checker, options): """Parse the CLI-style flags from `options` and expose to `checker`""" + extra_kwargs = {} + if flake8.__version_info__[0] >= 6: + extra_kwargs = { + "formatter_names": [] + } + options_manager = OptionManager( version=flake8.__version__, plugin_versions=f"naming: {pep8ext_naming.__version__}", parents=[], + **extra_kwargs, ) options_manager.add_option('--select', default=[]) options_manager.add_option('--extended-default-select', default=['N']) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/pep8-naming-0.13.2/setup.py new/pep8-naming-0.13.3/setup.py --- old/pep8-naming-0.13.2/setup.py 2022-08-19 17:45:35.000000000 +0200 +++ new/pep8-naming-0.13.3/setup.py 2022-12-19 21:43:16.000000000 +0100 @@ -42,7 +42,7 @@ license='Expat license', package_dir={'': 'src'}, py_modules=['pep8ext_naming'], - install_requires=['flake8>=3.9.1'], + install_requires=['flake8>=5.0.0'], zip_safe=False, python_requires='>=3.7', entry_points={ @@ -63,6 +63,7 @@ 'Programming Language :: Python :: 3.8', 'Programming Language :: Python :: 3.9', 'Programming Language :: Python :: 3.10', + 'Programming Language :: Python :: 3.11', 'Programming Language :: Python :: 3 :: Only', 'Topic :: Software Development :: Libraries :: Python Modules', 'Topic :: Software Development :: Quality Assurance', diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/pep8-naming-0.13.2/src/pep8_naming.egg-info/PKG-INFO new/pep8-naming-0.13.3/src/pep8_naming.egg-info/PKG-INFO --- old/pep8-naming-0.13.2/src/pep8_naming.egg-info/PKG-INFO 2022-08-19 21:22:51.000000000 +0200 +++ new/pep8-naming-0.13.3/src/pep8_naming.egg-info/PKG-INFO 2022-12-19 21:43:50.000000000 +0100 @@ -1,6 +1,6 @@ Metadata-Version: 2.1 Name: pep8-naming -Version: 0.13.2 +Version: 0.13.3 Summary: Check PEP-8 naming conventions, plugin for flake8 Home-page: https://github.com/PyCQA/pep8-naming Author: Florent Xicluna @@ -22,6 +22,7 @@ Classifier: Programming Language :: Python :: 3.8 Classifier: Programming Language :: Python :: 3.9 Classifier: Programming Language :: Python :: 3.10 +Classifier: Programming Language :: Python :: 3.11 Classifier: Programming Language :: Python :: 3 :: Only Classifier: Topic :: Software Development :: Libraries :: Python Modules Classifier: Topic :: Software Development :: Quality Assurance diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/pep8-naming-0.13.2/src/pep8_naming.egg-info/requires.txt new/pep8-naming-0.13.3/src/pep8_naming.egg-info/requires.txt --- old/pep8-naming-0.13.2/src/pep8_naming.egg-info/requires.txt 2022-08-19 21:22:51.000000000 +0200 +++ new/pep8-naming-0.13.3/src/pep8_naming.egg-info/requires.txt 2022-12-19 21:43:50.000000000 +0100 @@ -1 +1 @@ -flake8>=3.9.1 +flake8>=5.0.0 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/pep8-naming-0.13.2/src/pep8ext_naming.py new/pep8-naming-0.13.3/src/pep8ext_naming.py --- old/pep8-naming-0.13.2/src/pep8ext_naming.py 2022-08-19 21:22:01.000000000 +0200 +++ new/pep8-naming-0.13.3/src/pep8ext_naming.py 2022-12-19 21:43:16.000000000 +0100 @@ -9,7 +9,7 @@ from flake8 import style_guide -__version__ = '0.13.2' +__version__ = '0.13.3' PYTHON_VERSION = sys.version_info[:3]