14
0

- Update to 3.1.0:

* Drop support for EOL python 3.6 / 3.7
  * Remove ``ContinueInFinally`` check (only relevant in python < 3.8)
  * Fix forward annotations inside a nested scope
  * Produce an error when a definition shadows an unused variable
  * Fix accessed global annotation being redefined in a local scope
  * Allow redefinition of functions across ``match`` arms
  * Fix potential ``None`` for ``lineno`` during tokenization errors
  * Add support for PEP 695 and python 3.12
- Switch to pyproject macros.
- Drop patch py3114.patch, included now.

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pyflakes?expand=0&rev=69
This commit is contained in:
2023-08-08 06:21:28 +00:00
committed by Git OBS Bridge
parent 447798f6ad
commit 06f945d7ec
5 changed files with 24 additions and 54 deletions

View File

@@ -1,3 +1,18 @@
-------------------------------------------------------------------
Tue Aug 8 06:20:25 UTC 2023 - Steve Kowalik <steven.kowalik@suse.com>
- Update to 3.1.0:
* Drop support for EOL python 3.6 / 3.7
* Remove ``ContinueInFinally`` check (only relevant in python < 3.8)
* Fix forward annotations inside a nested scope
* Produce an error when a definition shadows an unused variable
* Fix accessed global annotation being redefined in a local scope
* Allow redefinition of functions across ``match`` arms
* Fix potential ``None`` for ``lineno`` during tokenization errors
* Add support for PEP 695 and python 3.12
- Switch to pyproject macros.
- Drop patch py3114.patch, included now.
-------------------------------------------------------------------
Tue Jul 11 13:45:34 UTC 2023 - Markéta Machová <mmachova@suse.com>