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 9, 2022
1 parent f1971bf commit f48f187
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 5 deletions.
2 changes: 1 addition & 1 deletion CONTRIBUTORS.txt
Original file line number Diff line number Diff line change
Expand Up @@ -89,8 +89,8 @@ contributors:
- Ville Skyttä <[email protected]>
- Matus Valo <[email protected]>
- Pierre-Yves David <[email protected]>
- David Shea <[email protected]>: invalid sequence and slice index
- Mark Byrne <[email protected]>
- David Shea <[email protected]>: invalid sequence and slice index
- Derek Gustafson <[email protected]>
- Cezar Elnazli <[email protected]>: deprecated-method
- Nicolas Chauvat <[email protected]>
Expand Down
8 changes: 7 additions & 1 deletion ChangeLog
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,15 @@ Release date: TBA
(Ie. not necessarily at the end)


What's New in Pylint 2.13.10?
=============================
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
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change
@@ -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 f48f187

Please sign in to comment.