15
0

- update to 2.8.5:

* Use more permissive versions for the ``typed-ast`` dependencie
    (<2.0 instead of <1.5)
  * Fix crash on inference of ``__len__``.
  * Added missing ``kind`` (for ``Const``) and ``conversion``
    (for ``FormattedValue``) fields to repr.
  * Fix crash with assignment expressions, nested if expressions
    and filtering of statements
  * Fix incorrect filtering of assignment expressions statements

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-astroid?expand=0&rev=66
This commit is contained in:
2021-11-13 20:22:50 +00:00
committed by Git OBS Bridge
parent 814e66b81c
commit 93a25f6815
4 changed files with 17 additions and 4 deletions

View File

@@ -1,3 +1,16 @@
-------------------------------------------------------------------
Sat Nov 13 20:22:06 UTC 2021 - Dirk Müller <dmueller@suse.com>
- update to 2.8.5:
* Use more permissive versions for the ``typed-ast`` dependencie
(<2.0 instead of <1.5)
* Fix crash on inference of ``__len__``.
* Added missing ``kind`` (for ``Const``) and ``conversion``
(for ``FormattedValue``) fields to repr.
* Fix crash with assignment expressions, nested if expressions
and filtering of statements
* Fix incorrect filtering of assignment expressions statements
-------------------------------------------------------------------
Wed Oct 27 13:31:47 UTC 2021 - Ben Greiner <code@bnavigator.de>