Skip to content

Commit

Permalink
Bump pylint to 2.13.9, update changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
Pierre-Sassoulas committed May 11, 2022
1 parent 43c2122 commit ad8dcf6
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion CONTRIBUTORS.txt
Expand Up @@ -89,8 +89,8 @@ contributors:
- Ville Skyttä <ville.skytta@iki.fi>
- Matus Valo <matusvalo@users.noreply.github.com>
- Pierre-Yves David <pierre-yves.david@logilab.fr>
- David Shea <dshea@redhat.com>: invalid sequence and slice index
- Mark Byrne <31762852+mbyrnepr2@users.noreply.github.com>
- David Shea <dshea@redhat.com>: invalid sequence and slice index
- Derek Gustafson <degustaf@gmail.com>
- Cezar Elnazli <cezar.elnazli2@gmail.com>: deprecated-method
- Nicolas Chauvat <nicolas.chauvat@logilab.fr>
Expand Down
2 changes: 1 addition & 1 deletion ChangeLog
Expand Up @@ -18,7 +18,7 @@ Release date: TBA

What's New in Pylint 2.13.9?
============================
Release date: TBA
Release date: 2022-05-09


* Fix false positives for ``no-name-in-module`` and ``import-error`` for ``numpy.distutils`` and ``pydantic``.
Expand Down
2 changes: 1 addition & 1 deletion pylint/__pkginfo__.py
Expand Up @@ -4,7 +4,7 @@

from typing import Tuple

__version__ = "2.13.8"
__version__ = "2.13.9"


def get_numversion_from_version(v: str) -> Tuple:
Expand Down
2 changes: 1 addition & 1 deletion pylint/checkers/utils.py
Expand Up @@ -820,7 +820,7 @@ def uninferable_final_decorators(
"""
decorators = []
for decorator in getattr(node, "nodes", []):
import_nodes: tuple[nodes.Import | nodes.ImportFrom] | None = None
import_nodes = None

# Get the `Import` node. The decorator is of the form: @module.name
if isinstance(decorator, nodes.Attribute):
Expand Down
2 changes: 1 addition & 1 deletion tbump.toml
@@ -1,7 +1,7 @@
github_url = "https://github.com/PyCQA/pylint"

[version]
current = "2.13.8"
current = "2.13.9"
regex = '''
^(?P<major>0|[1-9]\d*)
\.
Expand Down

0 comments on commit ad8dcf6

Please sign in to comment.