Skip to content

Commit

Permalink
Retrocompatibility with old version of pylint
Browse files Browse the repository at this point in the history
  • Loading branch information
Pierre-Sassoulas committed Apr 25, 2021
1 parent 7db1790 commit 2ec1996
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion astroid/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@

import wrapt

from .__pkginfo__ import __version__
from .__pkginfo__ import __version__, version

_Context = enum.Enum("Context", "Load Store Del")
Load = _Context.Load
Expand Down
2 changes: 2 additions & 0 deletions astroid/__pkginfo__.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,3 +38,5 @@
__version__ += f"a{dev_version}"
else:
__version__ += f".dev{dev_version}"

version = __version__

0 comments on commit 2ec1996

Please sign in to comment.