Skip to content

Commit

Permalink
Keep __pkginfo__.numversion a tuple
Browse files Browse the repository at this point in the history
Avoids breaking pylint-django
  • Loading branch information
nikolaik authored and Pierre-Sassoulas committed Apr 26, 2021
1 parent 530909c commit ea8a6eb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pylint/__pkginfo__.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,4 @@


# Kept for compatibility reason, see https://github.com/PyCQA/pylint/issues/4399
numversion = __version__.split(".")
numversion = tuple(__version__.split("."))

0 comments on commit ea8a6eb

Please sign in to comment.