15
0

Accepting request 1005503 from home:yarunachalam:branches:devel:languages:python

- Update to Version  2.12.8
  * Fixed a crash in the ``dataclass`` brain for ``InitVars`` without subscript typing.
  Closes PyCQA/pylint#7422
  * Fixed parsing of default values in ``dataclass`` attributes.
  Closes PyCQA/pylint#7425
- Update to Version 2.12.7
  * Fixed a crash in the ``dataclass`` brain for uninferable bases.
  Closes PyCQA/pylint#7418
- Update to Version 2.12.6
  * Fix a crash involving ``Uninferable`` arguments to ``namedtuple()``.
  Closes PyCQA/pylint#7375
  * The ``dataclass`` brain now understands the ``kw_only`` keyword in dataclass decorators.
  Closes PyCQA/pylint#7290
- Update to Version 2.12.5
  * Prevent first-party imports from being resolved to `site-packages`.
  Refs PyCQA/pylint#7365
  * Fix ``astroid.interpreter._import.util.is_namespace()`` incorrectly
  returning ``True`` for frozen stdlib modules on PyPy.
  Closes #1755

OBS-URL: https://build.opensuse.org/request/show/1005503
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-astroid?expand=0&rev=71
This commit is contained in:
2022-09-23 11:25:38 +00:00
committed by Git OBS Bridge
parent 55a699f6d9
commit 9b0007dfa2
4 changed files with 30 additions and 4 deletions

View File

@@ -1,3 +1,29 @@
-------------------------------------------------------------------
Thu Sep 22 22:50:11 UTC 2022 - Yogalakshmi Arunachalam <yarunachalam@suse.com>
- Update to Version 2.12.8
* Fixed a crash in the ``dataclass`` brain for ``InitVars`` without subscript typing.
Closes PyCQA/pylint#7422
* Fixed parsing of default values in ``dataclass`` attributes.
Closes PyCQA/pylint#7425
- Update to Version 2.12.7
* Fixed a crash in the ``dataclass`` brain for uninferable bases.
Closes PyCQA/pylint#7418
- Update to Version 2.12.6
* Fix a crash involving ``Uninferable`` arguments to ``namedtuple()``.
Closes PyCQA/pylint#7375
* The ``dataclass`` brain now understands the ``kw_only`` keyword in dataclass decorators.
Closes PyCQA/pylint#7290
- Update to Version 2.12.5
* Prevent first-party imports from being resolved to `site-packages`.
Refs PyCQA/pylint#7365
* Fix ``astroid.interpreter._import.util.is_namespace()`` incorrectly
returning ``True`` for frozen stdlib modules on PyPy.
Closes #1755
-------------------------------------------------------------------
Sat Aug 27 10:10:36 UTC 2022 - Ben Greiner <code@bnavigator.de>