15
0

- update to 1.7.0:

* tomli dependency for Python versions < 3.11, making use of
    tomllib in the standard library with 3.11+ (#150).
  * Support for pyi file extensions (and leave room for other
    file extensions to be added, like maybe ipynb).
  * Support for Google-style docstrings for class __init__
    methods with new --style [sphinx|google] flag (#128).
  * Include support for deleters when ignoring property
    decorators (#126
    <https://github.com/econchick/interrogate/issues/126>_).
  * Support floats for --fail-under values (#114).
  * toml dependency for all Python versions (#150).
  * Add --ignore-overloaded-functions flag to ignore overload
    decorators (#97) – thank you ErwinJunge (via #167) and
    zackyancey.
  * Support for Python 3.11 & 3.12.
  * Support for Python 3.6 & 3.7.

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-interrogate?expand=0&rev=5
This commit is contained in:
2024-04-20 15:39:31 +00:00
committed by Git OBS Bridge
parent 3d59ceab05
commit 0552d7b696
4 changed files with 31 additions and 8 deletions

View File

@@ -1,3 +1,24 @@
-------------------------------------------------------------------
Sat Apr 20 15:35:48 UTC 2024 - Dirk Müller <dmueller@suse.com>
- update to 1.7.0:
* tomli dependency for Python versions < 3.11, making use of
tomllib in the standard library with 3.11+ (#150).
* Support for pyi file extensions (and leave room for other
file extensions to be added, like maybe ipynb).
* Support for Google-style docstrings for class __init__
methods with new --style [sphinx|google] flag (#128).
* Include support for deleters when ignoring property
decorators (#126
<https://github.com/econchick/interrogate/issues/126>_).
* Support floats for --fail-under values (#114).
* toml dependency for all Python versions (#150).
* Add --ignore-overloaded-functions flag to ignore overload
decorators (#97) thank you ErwinJunge (via #167) and
zackyancey.
* Support for Python 3.11 & 3.12.
* Support for Python 3.6 & 3.7.
-------------------------------------------------------------------
Thu Sep 29 02:42:55 UTC 2022 - Yogalakshmi Arunachalam <yarunachalam@suse.com>