From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 5263E1382C5 for ; Fri, 16 Mar 2018 21:51:11 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 24D2EE07A7; Fri, 16 Mar 2018 21:51:10 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id F1063E07A7 for ; Fri, 16 Mar 2018 21:51:09 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id ACEE6335C0A for ; Fri, 16 Mar 2018 21:51:08 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 145FC216 for ; Fri, 16 Mar 2018 21:51:07 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1521237065.7ff954384e42f44f3138d263af5b212a8e5f56f8.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pylint/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/pylint/pylint-1.8.2.ebuild X-VCS-Directories: dev-python/pylint/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 7ff954384e42f44f3138d263af5b212a8e5f56f8 X-VCS-Branch: master Date: Fri, 16 Mar 2018 21:51:07 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: c2a073e8-96d3-4cb4-ab59-bd129232deb4 X-Archives-Hash: 7d818f4449058a61593130baabcd4aa5 commit: 7ff954384e42f44f3138d263af5b212a8e5f56f8 Author: Daniel Mueller posteo net> AuthorDate: Wed Mar 14 14:51:36 2018 +0000 Commit: Michał Górny gentoo org> CommitDate: Fri Mar 16 21:51:05 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7ff95438 dev-python/pylint: Fix version requirement for astroid Pylint in version 1.8.2 really depends on >=dev-python/astroid-1.6: $ pylint > ... > pkg_resources.DistributionNotFound: The 'astroid<2.0,>=1.6' > distribution was not found and is required by pylint Closes: https://github.com/gentoo/gentoo/pull/7460 dev-python/pylint/pylint-1.8.2.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev-python/pylint/pylint-1.8.2.ebuild b/dev-python/pylint/pylint-1.8.2.ebuild index 3bf9b99e1a3..f2f3fe561e2 100644 --- a/dev-python/pylint/pylint-1.8.2.ebuild +++ b/dev-python/pylint/pylint-1.8.2.ebuild @@ -20,7 +20,7 @@ KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~ppc ~sparc ~x86 ~amd64-linux ~x86-lin IUSE="doc examples test" RDEPEND=" - >=dev-python/astroid-1.5.1[${PYTHON_USEDEP}] + >=dev-python/astroid-1.6.0[${PYTHON_USEDEP}] dev-python/six[${PYTHON_USEDEP}] >=dev-python/isort-4.2.5[${PYTHON_USEDEP}] dev-python/mccabe[${PYTHON_USEDEP}]