14
0

- update to 2.9.1:

* E275: fix false positive for yield expressions.
  * E221, E222, E223, E224: add support for := operator. PR #1032.
  * Drop python 2.7 / 3.5.
  * E262: consider non-breaking spaces (\xa0) as whitespace. PR #1035.
  * Improve performance of _is_binary_operator. PR #1052.
  * E275: requires whitespace around keywords. PR #1063.
  * Add support for python 3.11. PR #1070.

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pycodestyle?expand=0&rev=19
This commit is contained in:
2022-08-15 11:02:18 +00:00
committed by Git OBS Bridge
parent b039e2fe93
commit 92c364a231
4 changed files with 21 additions and 13 deletions

View File

@@ -1,3 +1,15 @@
-------------------------------------------------------------------
Mon Aug 15 11:00:40 UTC 2022 - Dirk Müller <dmueller@suse.com>
- update to 2.9.1:
* E275: fix false positive for yield expressions.
* E221, E222, E223, E224: add support for := operator. PR #1032.
* Drop python 2.7 / 3.5.
* E262: consider non-breaking spaces (\xa0) as whitespace. PR #1035.
* Improve performance of _is_binary_operator. PR #1052.
* E275: requires whitespace around keywords. PR #1063.
* Add support for python 3.11. PR #1070.
-------------------------------------------------------------------
Thu Nov 4 13:31:35 UTC 2021 - Ferdinand Thiessen <rpm@fthiessen.de>