diff options
author | Claudiu Popa <pcmanticore@gmail.com> | 2017-04-13 17:19:24 +0300 |
---|---|---|
committer | Claudiu Popa <pcmanticore@gmail.com> | 2017-04-13 17:19:24 +0300 |
commit | 90a4e1cc3ea323e67a8fcc23aa8549a9cfc9d422 (patch) | |
tree | 1fb7cc30477b107192d88a9139bae38c24558751 | |
parent | 3e693a2837b263e411ab223057f5fa0f9b4ef531 (diff) | |
download | pylint-git-90a4e1cc3ea323e67a8fcc23aa8549a9cfc9d422.tar.gz |
Prepare 1.7.0 release
-rw-r--r-- | ChangeLog | 2 | ||||
-rw-r--r-- | pylint/__pkginfo__.py | 6 | ||||
-rw-r--r-- | tox.ini | 4 |
3 files changed, 5 insertions, 7 deletions
@@ -5,7 +5,7 @@ Pylint's ChangeLog What's New in Pylint 1.7? ========================= -Release date: tba +Release date: 2017-04-13 * Don't emit missing-final-newline or trailing-whitespace for formfeeds (page breaks). diff --git a/pylint/__pkginfo__.py b/pylint/__pkginfo__.py index facd3e7b9..570a0ed2b 100644 --- a/pylint/__pkginfo__.py +++ b/pylint/__pkginfo__.py @@ -22,16 +22,14 @@ numversion = (1, 7, 0) version = '.'.join([str(num) for num in numversion]) install_requires = [ - 'astroid', + 'astroid>=1.5.0', 'six', 'isort >= 4.2.5', 'mccabe', 'editdistance', ] -dependency_links = [ - 'https://github.com/PyCQA/astroid/tarball/master#egg=astroid-master-1.5' -] +dependency_links = [] extras_require = {} extras_require[':sys_platform=="win32"'] = ['colorama'] @@ -4,14 +4,14 @@ skip_missing_interpreters = true [testenv:pylint] deps = - git+https://github.com/PyCQA/astroid@master + astroid>=1.5.0 isort commands = pylint -rn --rcfile={toxinidir}/pylintrc --load-plugins=pylint.extensions.docparams, pylint.extensions.mccabe {envsitepackagesdir}/pylint [testenv] deps = - git+https://github.com/PyCQA/astroid@master + astroid>=1.5.0 coverage isort mccabe |