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 21A17138334 for ; Fri, 28 Sep 2018 10:24:14 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id CA073E09B7; Fri, 28 Sep 2018 10:24:12 +0000 (UTC) Received: from smtp.gentoo.org (dev.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 A146FE09B7 for ; Fri, 28 Sep 2018 10:24:12 +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 45B61335CCC for ; Fri, 28 Sep 2018 10:24:11 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 22E8C3FB for ; Fri, 28 Sep 2018 10:24:09 +0000 (UTC) From: "Jason Zaman" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Jason Zaman" Message-ID: <1538130234.758fa359bcbbf4d7ed73e326bfdff8c16ca5b999.perfinion@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/gast/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/gast/gast-0.2.0.ebuild X-VCS-Directories: dev-python/gast/ X-VCS-Committer: perfinion X-VCS-Committer-Name: Jason Zaman X-VCS-Revision: 758fa359bcbbf4d7ed73e326bfdff8c16ca5b999 X-VCS-Branch: master Date: Fri, 28 Sep 2018 10:24:09 +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: a81047e5-b410-414a-910d-7ac1552a43ae X-Archives-Hash: 6bc02e792012f534a78f2048bef1acfd commit: 758fa359bcbbf4d7ed73e326bfdff8c16ca5b999 Author: Jason Zaman gentoo org> AuthorDate: Fri Sep 28 10:21:17 2018 +0000 Commit: Jason Zaman gentoo org> CommitDate: Fri Sep 28 10:23:54 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=758fa359 dev-python/gast: add python3_5 compat Package-Manager: Portage-2.3.49, Repoman-2.3.10 dev-python/gast/gast-0.2.0.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev-python/gast/gast-0.2.0.ebuild b/dev-python/gast/gast-0.2.0.ebuild index 9965a03d1bf..5c7599fd30d 100644 --- a/dev-python/gast/gast-0.2.0.ebuild +++ b/dev-python/gast/gast-0.2.0.ebuild @@ -3,7 +3,7 @@ EAPI=7 -PYTHON_COMPAT=( python2_7 python3_6 ) +PYTHON_COMPAT=( python2_7 python{3_5,3_6} ) inherit distutils-r1 DESCRIPTION="A generic AST to represent Python2 and Python3's Abstract Syntax Tree (AST)"