Skip to content

Commit

Permalink
Mark this release as a dev release. Close pylint-dev/astroid#608
Browse files Browse the repository at this point in the history
  • Loading branch information
PCManticore committed Aug 23, 2018
1 parent b3dc683 commit 664c712
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion pylint/__pkginfo__.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,10 @@
modname = distname = 'pylint'

numversion = (2, 2, 0)
version = '.'.join(str(num) for num in numversion)
dev_version = 'dev'
string_version = '.'.join(str(num) for num in numversion)

version = string_version + '-' + dev_version

install_requires = [
'astroid>=2.0.0',
Expand Down

0 comments on commit 664c712

Please sign in to comment.