From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 41D231391DB for ; Sun, 23 Mar 2014 15:57:18 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 0028EE0ABF; Sun, 23 Mar 2014 15:57:15 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 88317E0ABF for ; Sun, 23 Mar 2014 15:57:14 +0000 (UTC) Received: from spoonbill.gentoo.org (spoonbill.gentoo.org [81.93.255.5]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 7C0F433F8F2 for ; Sun, 23 Mar 2014 15:57:13 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by spoonbill.gentoo.org (Postfix) with ESMTP id 054B9188EA for ; Sun, 23 Mar 2014 15:57:12 +0000 (UTC) From: "Arfrever Frehtes Taifersar Arahesis" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Arfrever Frehtes Taifersar Arahesis" Message-ID: <1395590187.6daffecda308f916ad2d7da7607be2fcfccf7e9d.arfrever@gentoo> Subject: [gentoo-commits] proj/portage:master commit in: / X-VCS-Repository: proj/portage X-VCS-Files: runtests.sh X-VCS-Directories: / X-VCS-Committer: arfrever X-VCS-Committer-Name: Arfrever Frehtes Taifersar Arahesis X-VCS-Revision: 6daffecda308f916ad2d7da7607be2fcfccf7e9d X-VCS-Branch: master Date: Sun, 23 Mar 2014 15:57:12 +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: 3eef12a2-c2ce-4335-8f14-c9cd0b2e502f X-Archives-Hash: 3be2eddbbb2de54a24d305a7c793929f commit: 6daffecda308f916ad2d7da7607be2fcfccf7e9d Author: Arfrever Frehtes Taifersar Arahesis Apache Org> AuthorDate: Sun Mar 23 15:56:27 2014 +0000 Commit: Arfrever Frehtes Taifersar Arahesis apache org> CommitDate: Sun Mar 23 15:56:27 2014 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/portage.git;a=commit;h=6daffecd runtests.sh: Add 3.4 to PYTHON_SUPPORTED_VERSIONS and 3.5 to PYTHON_VERSIONS. --- runtests.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/runtests.sh b/runtests.sh index 86d34b6..7999220 100755 --- a/runtests.sh +++ b/runtests.sh @@ -3,8 +3,8 @@ # Distributed under the terms of the GNU General Public License v2 # These are the versions we care about. The rest are just "nice to have". -PYTHON_SUPPORTED_VERSIONS="2.6 2.7 3.2 3.3" -PYTHON_VERSIONS="2.6 2.7 2.7-pypy-1.8 2.7-pypy-1.9 2.7-pypy-2.0 3.1 3.2 3.3 3.4" +PYTHON_SUPPORTED_VERSIONS="2.6 2.7 3.2 3.3 3.4" +PYTHON_VERSIONS="2.6 2.7 2.7-pypy-1.8 2.7-pypy-1.9 2.7-pypy-2.0 3.1 3.2 3.3 3.4 3.5" # has to be run from portage root dir cd "${0%/*}" || exit 1