Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package python-blue for openSUSE:Factory checked in at 2023-01-28 18:45:30 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/python-blue (Old) and /work/SRC/openSUSE:Factory/.python-blue.new.32243 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-blue" Sat Jan 28 18:45:30 2023 rev:8 rq:1061736 version:0.9.1 Changes: -------- --- /work/SRC/openSUSE:Factory/python-blue/python-blue.changes 2022-09-19 16:04:25.582325008 +0200 +++ /work/SRC/openSUSE:Factory/.python-blue.new.32243/python-blue.changes 2023-01-28 19:00:45.191865698 +0100 @@ -1,0 +2,12 @@ +Sat Jan 28 12:58:30 UTC 2023 - Dirk Müller <[email protected]> + +- update to 0.9.1: + * blue is incompatible with flake8 v5 (GH#78) due to changes in the way + flake8 parses its config files. For now, pin the flake8 dependency <5.0.0 + * Add support for testing against Python 3.10 and 3.11 in tox.ini, and fix an + incompatibility with the rstcheck command line. + * Bump copyright years. +- drop unpin-black.patch (obsolete) +- update flake8-v5-compatibility.patch to unpin flake8 again + +------------------------------------------------------------------- Old: ---- blue-0.9.0.tar.gz unpin-black.patch New: ---- blue-0.9.1.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ python-blue.spec ++++++ --- /var/tmp/diff_new_pack.yPoykp/_old 2023-01-28 19:00:45.899869602 +0100 +++ /var/tmp/diff_new_pack.yPoykp/_new 2023-01-28 19:00:45.907869645 +0100 @@ -1,7 +1,7 @@ # # spec file for package python-blue # -# 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,14 +19,12 @@ %{?!python_module:%define python_module() python3-%{**}} %define skip_python2 1 Name: python-blue -Version: 0.9.0 +Version: 0.9.1 Release: 0 Summary: A code formatter written in, and written for Python License: MIT URL: https://github.com/grantjenks/blue Source: https://github.com/grantjenks/blue/archive/v%{version}.tar.gz#/blue-%{version}.tar.gz -# PATCH-FIX-OPENSUSE unpin-black.patch -- we can't have a fixed black version in the distribution -Patch0: unpin-black.patch # PATCH-FIX-OPENSUSE unpin-tomli.patch -- gh#grantjenks/blue#66 Patch1: unpin-tomli.patch # PATCH-FIX-UPSTREAM flake8-v5-compatibility.patch -- gh#grantjenks/blue#78 ++++++ blue-0.9.0.tar.gz -> blue-0.9.1.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/blue-0.9.0/LICENSE new/blue-0.9.1/LICENSE --- old/blue-0.9.0/LICENSE 2022-05-02 22:25:15.000000000 +0200 +++ new/blue-0.9.1/LICENSE 2022-08-01 18:33:06.000000000 +0200 @@ -1,4 +1,4 @@ -Copyright 2021 Grant Jenks and Barry Warsaw +Copyright 2021-2022 Grant Jenks and Barry Warsaw Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/blue-0.9.0/blue/__init__.py new/blue-0.9.1/blue/__init__.py --- old/blue-0.9.0/blue/__init__.py 2022-05-02 22:25:15.000000000 +0200 +++ new/blue-0.9.1/blue/__init__.py 2022-08-01 18:33:06.000000000 +0200 @@ -9,7 +9,7 @@ from importlib import machinery -__version__ = '0.9.0' +__version__ = '0.9.1' # Black 1.0+ ships pre-compiled libraries with mypyc, which we can't diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/blue-0.9.0/docs/index.rst new/blue-0.9.1/docs/index.rst --- old/blue-0.9.0/docs/index.rst 2022-05-02 22:25:15.000000000 +0200 +++ new/blue-0.9.1/docs/index.rst 2022-08-01 18:33:06.000000000 +0200 @@ -5,6 +5,15 @@ ======= +2022-08-01 (0.9.1) +------------------ +- blue is incompatible with flake8 v5 (GH#78) due to changes in the way flake8 + parses its config files. For now, pin the flake8 dependency <5.0.0 (GH#79). +- Add support for testing against Python 3.10 and 3.11 in tox.ini, and fix an + incompatibility with the rstcheck command line. +- Bump copyright years. + + 2022-05-02 (0.9.0) ------------------ - Fix test suite failures due to a confluence of problems (GH#74) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/blue-0.9.0/requirements.txt new/blue-0.9.1/requirements.txt --- old/blue-0.9.0/requirements.txt 2022-05-02 22:25:15.000000000 +0200 +++ new/blue-0.9.1/requirements.txt 2022-08-01 18:33:06.000000000 +0200 @@ -1,6 +1,6 @@ -e . doc8 -flake8 +flake8<5.0.0 pytest pytest-cov rstcheck diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/blue-0.9.0/setup.py new/blue-0.9.1/setup.py --- old/blue-0.9.0/setup.py 2022-05-02 22:25:15.000000000 +0200 +++ new/blue-0.9.1/setup.py 2022-08-01 18:33:06.000000000 +0200 @@ -37,7 +37,7 @@ packages=['blue'], tests_require=['tox'], cmdclass={'test': Tox}, - install_requires=['black==22.1.0', 'flake8>=3.8'], + install_requires=['black==22.1.0', 'flake8>=3.8,<5.0.0'], project_urls={ 'Documentation': 'https://blue.readthedocs.io/en/latest', 'Source': 'https://github.com/grantjenks/blue.git', diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/blue-0.9.0/tox.ini new/blue-0.9.1/tox.ini --- old/blue-0.9.0/tox.ini 2022-05-02 22:25:15.000000000 +0200 +++ new/blue-0.9.1/tox.ini 2022-08-01 18:33:06.000000000 +0200 @@ -1,5 +1,5 @@ [tox] -envlist=bluecheck,doc8,flake8,rstcheck,docs,py36,py37,py38,py39 +envlist=bluecheck,doc8,flake8,rstcheck,docs,py36,py37,py38,py39,py310,py311 skip_missing_interpreters=True [testenv] @@ -36,7 +36,7 @@ [testenv:rstcheck] deps=rstcheck -commands=rstcheck --report warning README.rst +commands=rstcheck --report-level warning README.rst [coverage:report] fail_under=85 ++++++ flake8-v5-compatibility.patch ++++++ --- /var/tmp/diff_new_pack.yPoykp/_old 2023-01-28 19:00:46.083870616 +0100 +++ /var/tmp/diff_new_pack.yPoykp/_new 2023-01-28 19:00:46.087870638 +0100 @@ -15,4 +15,15 @@ class MergedConfigParser(BaseConfigParser): +--- blue-0.9.1.orig/setup.py ++++ blue-0.9.1/setup.py +@@ -37,7 +37,7 @@ setup( + packages=['blue'], + tests_require=['tox'], + cmdclass={'test': Tox}, +- install_requires=['black==22.1.0', 'flake8>=3.8,<5.0.0'], ++ install_requires=['black==22.1.0', 'flake8>=3.8'], + project_urls={ + 'Documentation': 'https://blue.readthedocs.io/en/latest', + 'Source': 'https://github.com/grantjenks/blue.git',
