- update to 3.0.2:
* Improved warnings by ensuring that they target user code and not Typeguard internal code * Fixed ``warn_on_error()`` not showing where the type violation actually occurred * Fixed local assignment to ``*args`` or ``**kwargs`` being type checked incorrectly * Fixed ``TypeError`` on ``check_type(..., None)`` * Fixed unpacking assignment not working with a starred variable (``x, *y = ...``) in * the target tuple * Fixed variable multi-assignment (``a = b = c = ...``) being type checked incorrectly * Improved the documentation * Fixed assignment unpacking (``a, b = ...``) being checked incorrectly * Fixed ``@typechecked`` attempting to instrument wrapper decorators such as * ``@contextmanager`` when applied to a class * Fixed ``py.typed`` missing from the wheel when not building from a git checkout * Dropped the ``argname``, ``memo``, ``globals`` and ``locals`` arguments from ``check_type()`` * Removed the ``check_argument_types()`` and ``check_return_type()`` functions (use ``@typechecked`` instead) * Moved ``install_import_hook`` to be directly importable from the ``typeguard`` module * Changed the checking of collections (list, set, dict, sequence, mapping) to only check the first item by default. To get the old behavior, OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-typeguard?expand=0&rev=7
This commit is contained in:
parent
a34e987136
commit
065aa08ad3
@ -1,3 +1,84 @@
|
||||
-------------------------------------------------------------------
|
||||
Fri May 5 09:24:37 UTC 2023 - Dirk Müller <dmueller@suse.com>
|
||||
|
||||
- update to 3.0.2:
|
||||
* Improved warnings by ensuring that they target user code and
|
||||
not Typeguard internal code
|
||||
* Fixed ``warn_on_error()`` not showing where the type
|
||||
violation actually occurred
|
||||
* Fixed local assignment to ``*args`` or ``**kwargs`` being
|
||||
type checked incorrectly
|
||||
* Fixed ``TypeError`` on ``check_type(..., None)``
|
||||
* Fixed unpacking assignment not working with a starred
|
||||
variable (``x, *y = ...``) in
|
||||
* the target tuple
|
||||
* Fixed variable multi-assignment (``a = b = c = ...``) being
|
||||
type checked incorrectly
|
||||
* Improved the documentation
|
||||
* Fixed assignment unpacking (``a, b = ...``) being checked
|
||||
incorrectly
|
||||
* Fixed ``@typechecked`` attempting to instrument wrapper
|
||||
decorators such as
|
||||
* ``@contextmanager`` when applied to a class
|
||||
* Fixed ``py.typed`` missing from the wheel when not building
|
||||
from a git checkout
|
||||
* Dropped the ``argname``, ``memo``, ``globals`` and
|
||||
``locals`` arguments from ``check_type()``
|
||||
* Removed the ``check_argument_types()`` and ``check_return_type()``
|
||||
functions (use ``@typechecked`` instead)
|
||||
* Moved ``install_import_hook`` to be directly importable from
|
||||
the ``typeguard`` module
|
||||
* Changed the checking of collections
|
||||
(list, set, dict, sequence, mapping) to only check the
|
||||
first item by default. To get the old behavior,
|
||||
set ``typeguard.config.collection_check_strategy`` to
|
||||
``CollectionCheckStrategy.ALL_ITEMS``
|
||||
* Type checking failures now raise
|
||||
typeguard.TypeCheckError instead of TypeError
|
||||
* Dropped Python 3.5 and 3.6 support
|
||||
* Dropped the deprecated profiler hook (``TypeChecker``)
|
||||
* Added a configuration system
|
||||
* Added support for custom type checking functions
|
||||
* Added support for PEP 604 union types (``X | Y``) on all
|
||||
Python versions
|
||||
* Added support for generic built-in collection types
|
||||
(``list[int]`` et al) on all
|
||||
* Python versions
|
||||
* Added support for checking arbitrary Mapping types
|
||||
* Added support for the Self type
|
||||
* Added support for ``typing.Never`` (and
|
||||
``typing_extensions.Never``)
|
||||
* Added support for ``Never`` and ``NoReturn`` in argument
|
||||
annotations
|
||||
* Added support for ``LiteralString``
|
||||
* Added support for ``TypeGuard``
|
||||
* Added support for the subclassable ``Any`` on Python 3.11 and
|
||||
``typing_extensions``
|
||||
* Added the possibility to have the import hook instrument all
|
||||
packages
|
||||
* Added the ``suppress_type_checks()`` context manager function
|
||||
for temporarily disabling type checks
|
||||
* Changed ``check_type()`` to return the passed value, so it
|
||||
can be used (to an extent) in place of ``typing.cast()``,
|
||||
but with run-time type checking
|
||||
* Replaced custom implementation of ``is_typeddict()`` with the
|
||||
implementation from ``typing_extensions`` v4.1.0
|
||||
* Emit ``InstrumentationWarning`` instead of raising
|
||||
``RuntimeError`` from the pytest plugin if modules in the
|
||||
target package have already been imported
|
||||
* Fixed ``TypeError`` when checking against ``TypedDict`` when
|
||||
the value has mixed types among the extra keys (PR by biolds)
|
||||
* Fixed incompatibility with ``typing_extensions`` v4.1+ on
|
||||
Python 3.10 (PR by David C.)
|
||||
* Fixed checking of ``Tuple[()]`` on Python 3.11 and
|
||||
``tuple[()]`` on Python 3.9+
|
||||
* Fixed integers 0 and 1 passing for ``Literal[False]`` and
|
||||
``Literal[True]``, respectively
|
||||
* Fixed type checking of annotated variable positional and
|
||||
keyword arguments (``*args`` and ``**kwargs``)
|
||||
* Fixed checks against ``unittest.Mock`` and derivatives being
|
||||
done in the wrong place
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Apr 21 12:38:04 UTC 2023 - Dirk Müller <dmueller@suse.com>
|
||||
|
||||
|
@ -20,17 +20,20 @@
|
||||
%define skip_python2 1
|
||||
%{?sle15_python_module_pythons}
|
||||
Name: python-typeguard
|
||||
Version: 2.13.3
|
||||
Version: 3.0.2
|
||||
Release: 0
|
||||
Summary: Library for runtime checking of Python types
|
||||
License: MIT
|
||||
URL: https://github.com/agronholm/typeguard
|
||||
Source0: https://files.pythonhosted.org/packages/source/t/typeguard/typeguard-%{version}.tar.gz
|
||||
BuildRequires: %{python_module setuptools_scm >= 1.7.0}
|
||||
BuildRequires: %{python_module pip}
|
||||
BuildRequires: %{python_module setuptools}
|
||||
BuildRequires: %{python_module wheel}
|
||||
BuildRequires: fdupes
|
||||
BuildRequires: python-rpm-macros
|
||||
BuildArch: noarch
|
||||
Requires: python-importlib-metadata >= 3.6
|
||||
Requires: python-typing-extensions >= 4.4.0
|
||||
%python_subpackages
|
||||
|
||||
%description
|
||||
@ -40,10 +43,10 @@ This library provides run-time type checking for functions defined with PEP 484
|
||||
%setup -q -n typeguard-%{version}
|
||||
|
||||
%build
|
||||
%python_build
|
||||
%pyproject_wheel
|
||||
|
||||
%install
|
||||
%python_install
|
||||
%pyproject_install
|
||||
%python_expand %fdupes %{buildroot}%{$python_sitelib}
|
||||
|
||||
%check
|
||||
@ -51,6 +54,7 @@ This library provides run-time type checking for functions defined with PEP 484
|
||||
|
||||
%files %{python_files}
|
||||
%license LICENSE
|
||||
%{python_sitelib}/*
|
||||
%{python_sitelib}/typeguard
|
||||
%{python_sitelib}/typeguard-*.dist-info/
|
||||
|
||||
%changelog
|
||||
|
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:00edaa8da3a133674796cf5ea87d9f4b4c367d77476e185e80251cc13dfbb8c4
|
||||
size 40604
|
3
typeguard-3.0.2.tar.gz
Normal file
3
typeguard-3.0.2.tar.gz
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:fee5297fdb28f8e9efcb8142b5ee219e02375509cd77ea9d270b5af826358d5a
|
||||
size 58171
|
Loading…
Reference in New Issue
Block a user