14
0

Accepting request 1102396 from home:mschreiner:branches:devel:languages:python

- Update to 2.11.0
  * Drop EOL python 3.6 / 3.7.
  * Add support for python 3.12.
  * E721: adjust handling of type comparison.
    Allowed forms are now isinstance(x, t) or type(x) is t.
  * Remove handling of python 2 <> operator.
  * W606: removed. async / await are always keywords.
  * Internal: move tests to pytest.
  * Remove handling of python 2 ur'' strings.
- Remove testsuite_fixes.patch as it's no longer required
- Replaced spec file "Source" to pull from GitHub due to this issue:
  https://github.com/PyCQA/pycodestyle/issues/1183
- Apply spec-cleaner to spec file.

OBS-URL: https://build.opensuse.org/request/show/1102396
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pycodestyle?expand=0&rev=34
This commit is contained in:
2023-08-04 14:27:30 +00:00
committed by Git OBS Bridge
parent ae379a7fa3
commit 35aeb575a9
5 changed files with 26 additions and 167 deletions

View File

@@ -1,3 +1,20 @@
-------------------------------------------------------------------
Thu Aug 3 14:59:59 UTC 2023 - Martin Schreiner <martin.schreiner@suse.com>
- Update to 2.11.0
* Drop EOL python 3.6 / 3.7.
* Add support for python 3.12.
* E721: adjust handling of type comparison.
Allowed forms are now isinstance(x, t) or type(x) is t.
* Remove handling of python 2 <> operator.
* W606: removed. async / await are always keywords.
* Internal: move tests to pytest.
* Remove handling of python 2 ur'' strings.
- Remove testsuite_fixes.patch as it's no longer required
- Replaced spec file "Source" to pull from GitHub due to this issue:
https://github.com/PyCQA/pycodestyle/issues/1183
- Apply spec-cleaner to spec file.
-------------------------------------------------------------------
Tue Jul 18 11:27:38 UTC 2023 - Ana Guerrero <ana.guerrero@suse.com>