15
0

- update to 24.3.1:

* Y064: Use simpler syntax to define final literal types.
  * For example, use `x: Final = 42` instead of `x:
    Final[Literal[42]]`
  * Y065: Don't use bare `Incomplete` in parameter and return
    annotations.
  * Y090: Fix false positive for `tuple[Unpack[Ts]]`.

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-flake8-pyi?expand=0&rev=27
This commit is contained in:
2024-04-07 09:02:55 +00:00
committed by Git OBS Bridge
parent b43c0ca5e9
commit e3de752faa
4 changed files with 15 additions and 4 deletions

View File

@@ -1,3 +1,14 @@
-------------------------------------------------------------------
Sun Apr 7 09:02:03 UTC 2024 - Dirk Müller <dmueller@suse.com>
- update to 24.3.1:
* Y064: Use simpler syntax to define final literal types.
* For example, use `x: Final = 42` instead of `x:
Final[Literal[42]]`
* Y065: Don't use bare `Incomplete` in parameter and return
annotations.
* Y090: Fix false positive for `tuple[Unpack[Ts]]`.
-------------------------------------------------------------------
Mon Mar 25 17:31:54 UTC 2024 - Dirk Müller <dmueller@suse.com>