14
0

- update to 2.5.0:

* mDrop support for EOL python 2.7 / 3.4 / 3.5
  * mIgnore ``__all__`` when not directly assigned
  * mHandle ``TypeAlias`` annotations as aliases (PEP 613)
  * mAssignment expressions (``:=``) target outer scope in comprehensions
  * mAdd support for new python 3.11 syntax
  * mUnify output so it is always ``filename:lineno:col:  message``
  * mProperly report ``SyntaxError`` from stdin in python < 3.9
  * mFix offsets of ``SyntaxError``s in pypy

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pyflakes?expand=0&rev=56
This commit is contained in:
2022-08-18 08:27:26 +00:00
committed by Git OBS Bridge
parent c89c1fc744
commit 39ae7c955c
4 changed files with 18 additions and 5 deletions

View File

@@ -1,3 +1,16 @@
-------------------------------------------------------------------
Thu Aug 18 08:27:04 UTC 2022 - Dirk Müller <dmueller@suse.com>
- update to 2.5.0:
* mDrop support for EOL python 2.7 / 3.4 / 3.5
* mIgnore ``__all__`` when not directly assigned
* mHandle ``TypeAlias`` annotations as aliases (PEP 613)
* mAssignment expressions (``:=``) target outer scope in comprehensions
* mAdd support for new python 3.11 syntax
* mUnify output so it is always ``filename:lineno:col: message``
* mProperly report ``SyntaxError`` from stdin in python < 3.9
* mFix offsets of ``SyntaxError``s in pypy
-------------------------------------------------------------------
Wed Nov 3 09:33:27 UTC 2021 - pgajdos@suse.com