14
0

- Update to 4.4.4

* Fixed IndexError when using @typechecked on more than one
    function with the same name under certain circumstances (#527)
  * Fixed TypeError during type checking when the value to check
    is a parametrized generic class (#526)
- from version 4.4.3
  * Fixed @typechecked unable to find the target function or method if
    it or the containing class had PEP 695 type parameters on them (#500)
  * Fixed handling of union types on Python 3.14 (#522)
  * Fixed __type_params__ getting lost when a function is instrumented

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-typeguard?expand=0&rev=21
This commit is contained in:
2025-06-27 14:21:13 +00:00
committed by Git OBS Bridge
parent 4a95815bb9
commit 565cf22e59
4 changed files with 18 additions and 4 deletions

View File

@@ -1,3 +1,17 @@
-------------------------------------------------------------------
Wed Jun 25 14:16:58 UTC 2025 - John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>
- Update to 4.4.4
* Fixed IndexError when using @typechecked on more than one
function with the same name under certain circumstances (#527)
* Fixed TypeError during type checking when the value to check
is a parametrized generic class (#526)
- from version 4.4.3
* Fixed @typechecked unable to find the target function or method if
it or the containing class had PEP 695 type parameters on them (#500)
* Fixed handling of union types on Python 3.14 (#522)
* Fixed __type_params__ getting lost when a function is instrumented
-------------------------------------------------------------------
Tue Mar 4 09:14:50 UTC 2025 - Nico Krapp <nico.krapp@suse.com>