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 0DE98138350 for ; Sun, 1 Mar 2020 18:44:16 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 15F6FE0961; Sun, 1 Mar 2020 18:44:15 +0000 (UTC) Received: from smtp.gentoo.org (smtp.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 CC0E7E0961 for ; Sun, 1 Mar 2020 18:44:14 +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 D932534F1DF for ; Sun, 1 Mar 2020 18:44:13 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6737F2B for ; Sun, 1 Mar 2020 18:44:12 +0000 (UTC) From: "Zac Medico" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Zac Medico" Message-ID: <1583088106.d4d1c3110a5bcea44e3c62e8c86d7a999325a61e.zmedico@gentoo> Subject: [gentoo-commits] proj/portage:master commit in: repoman/, / X-VCS-Repository: proj/portage X-VCS-Files: .travis.yml repoman/runtests runtests tox.ini X-VCS-Directories: / repoman/ X-VCS-Committer: zmedico X-VCS-Committer-Name: Zac Medico X-VCS-Revision: d4d1c3110a5bcea44e3c62e8c86d7a999325a61e X-VCS-Branch: master Date: Sun, 1 Mar 2020 18:44: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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 9b276a3b-1465-4fa6-a557-7930f957abce X-Archives-Hash: 83b5eee72d220520370ba51be6d10c1f commit: d4d1c3110a5bcea44e3c62e8c86d7a999325a61e Author: Manuel RĂ¼ger rueg eu> AuthorDate: Sun Mar 1 12:44:56 2020 +0000 Commit: Zac Medico gentoo org> CommitDate: Sun Mar 1 18:41:46 2020 +0000 URL: https://gitweb.gentoo.org/proj/portage.git/commit/?id=d4d1c311 Add python3.9 support Closes: https://github.com/gentoo/portage/pull/515 Signed-off-by: Zac Medico gentoo.org> .travis.yml | 3 ++- repoman/runtests | 8 ++++---- runtests | 8 ++++---- tox.ini | 4 ++-- 4 files changed, 12 insertions(+), 11 deletions(-) diff --git a/.travis.yml b/.travis.yml index 5123141ac..9269d4034 100644 --- a/.travis.yml +++ b/.travis.yml @@ -3,7 +3,8 @@ python: - 2.7 - 3.6 - 3.7 - - 3.8-dev + - 3.8 + - 3.9-dev - pypy3 # command to install dependencies diff --git a/repoman/runtests b/repoman/runtests index 1ef52f482..bbda4526f 100755 --- a/repoman/runtests +++ b/repoman/runtests @@ -24,14 +24,14 @@ import tempfile # These are the versions we fully support and require to pass tests. PYTHON_SUPPORTED_VERSIONS = [ '2.7', - '3.5', '3.6', - '3.7' + '3.7', + '3.8' ] # The rest are just "nice to have". PYTHON_NICE_VERSIONS = [ - 'pypy', - '3.8' + 'pypy3', + '3.9' ] EPREFIX = os.environ.get('PORTAGE_OVERRIDE_EPREFIX', '/') diff --git a/runtests b/runtests index 50d7b8251..11c317dff 100755 --- a/runtests +++ b/runtests @@ -24,14 +24,14 @@ import tempfile # These are the versions we fully support and require to pass tests. PYTHON_SUPPORTED_VERSIONS = [ '2.7', - '3.5', '3.6', - '3.7' + '3.7', + '3.8' ] # The rest are just "nice to have". PYTHON_NICE_VERSIONS = [ - 'pypy', - '3.8' + 'pypy3', + '3.9' ] EPREFIX = os.environ.get('PORTAGE_OVERRIDE_EPREFIX', '/') diff --git a/tox.ini b/tox.ini index 5ba192d2e..79b5b45cb 100644 --- a/tox.ini +++ b/tox.ini @@ -1,12 +1,12 @@ [tox] -envlist = py27,py36,py37,py38,pypy3 +envlist = py27,py36,py37,py38,py39,pypy3 skipsdist = True [testenv] deps = pygost pyyaml - py27,py36,py37,py38,pypy3: lxml!=4.2.0 + py27,py36,py37,py38,py39,pypy3: lxml!=4.2.0 py27: pyblake2 py27: pysha3 setenv =