Skip to content

Releases: pylint-dev/astroid

v2.7.1

16 Aug 17:28
Compare
Choose a tag to compare
  • When processing dataclass attributes, only do typing inference on collection types.
    Support for instantiating other typing types is left for the future, if desired.

    Closes #1129

  • Fixed LookupMixIn missing from astroid.node_classes.

v2.7.0

16 Aug 10:59
Compare
Choose a tag to compare

v2.6.6

03 Aug 20:42
Compare
Choose a tag to compare
  • Added support to infer return type of typing.cast()

  • Fix variable lookup's handling of exclusive statements

    Closes pylint-dev/pylint#3711

  • Fix variable lookup's handling of function parameters

    Closes #180

  • Fix variable lookup's handling of except clause variables

  • Fix handling of classes with duplicated bases with the same name

    Closes #1088

v2.6.5

21 Jul 06:50
Compare
Choose a tag to compare
  • Fix a crash when there would be a 'TypeError object does not support
    item assignment' in the code we parse.

    Closes pylint-dev/pylint#4439

  • Fix a crash when a AttributeInferenceError was raised when
    failing to find the real name in infer_import_from.

    Closes pylint-dev/pylint#4692

v2.6.4

19 Jul 21:41
Compare
Choose a tag to compare
  • Fix a crash when a StopIteration was raised when inferring
    a faulty function in a context manager.

    Closes pylint-dev/pylint#4723

v2.6.3

19 Jul 19:26
Compare
Choose a tag to compare
  • Added If.is_sys_guard and If.is_typing_guard helper methods

  • Fix a bad inferenece type for yield values inside of a derived class.

    Closes #1090

  • Fix a crash when the node is a 'Module' in the brain builtin inference

    Closes pylint-dev/pylint#4671

  • Fix issues when inferring match variables

    Closes pylint-dev/pylint#4685

  • Fix lookup for nested non-function scopes

  • Fix issue that TypedDict instance wasn't callable.

    Closes pylint-dev/pylint#4715

  • Add dependency on setuptools and a guard to prevent related exceptions.

v2.6.2

30 Jun 10:30
Compare
Choose a tag to compare

v2.6.1

29 Jun 16:20
Compare
Choose a tag to compare

v2.6.0

22 Jun 05:54
Compare
Choose a tag to compare
  • Appveyor and travis are no longer used in the continuous integration

  • setuptools_scm has been removed and replaced by tbump in order to not
    have hidden runtime dependencies to setuptools

  • NodeNg, the base node class, is now accessible from astroid or
    astroid.nodes as it can be used for typing.

  • Update enum brain to improve inference of .name and .value dynamic class
    attributes

    Closes pylint-dev/pylint#1932
    Closes pylint-dev/pylint#2062
    Closes pylint-dev/pylint#2306

  • Removed Repr, Exec, and Print nodes as the ast nodes
    they represented have been removed with the change to Python 3

  • Deprecate Ellipsis node. It will be removed with the next minor release.
    Checkers that already support Python 3.8+ work without issues. It's only
    necessary to remove all references to the astroid.Ellipsis node.
    This changes will make development of checkers easier as the resulting tree for Ellipsis
    will no longer depend on the python version. Background: With Python 3.8 the
    ast.Ellipsis node, along with ast.Str, ast.Bytes, ast.Num,
    and ast.NamedConstant were merged into ast.Constant.

  • Deprecated Index and ExtSlice nodes. They will be removed with the
    next minor release. Both are now part of the Subscript node.
    Checkers that already support Python 3.9+ work without issues.
    It's only necessary to remove all references to the astroid.Index and
    astroid.ExtSlice nodes. This change will make development of checkers
    easier as the resulting tree for ast.Subscript nodes will no longer
    depend on the python version. Background: With Python 3.9 ast.Index
    and ast.ExtSlice were merged into the ast.Subscript node.

  • Updated all Match nodes to be internally consistent.

  • Add Pattern base class.

Test for new release workflow without scm_setuptool

15 Jun 19:07
Compare
Choose a tag to compare
v2.6.0-dev0

Bump astroid to 2.6.0-dev0, update changelog