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 3CB491382C5 for ; Thu, 31 Dec 2020 01:03:13 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7A149E0809; Thu, 31 Dec 2020 01:03:12 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 6000FE0809 for ; Thu, 31 Dec 2020 01:03: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 1D14B33BE93 for ; Thu, 31 Dec 2020 01:03:11 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8F84C39F for ; Thu, 31 Dec 2020 01:03:09 +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: <1609376565.57c13cb8630a7ee78d714a4cc15bceb3d0fd2838.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: 57c13cb8630a7ee78d714a4cc15bceb3d0fd2838 X-VCS-Branch: master Date: Thu, 31 Dec 2020 01:03: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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 48ec0e3a-98d7-455e-a338-32ed286116f9 X-Archives-Hash: 2666b52a6ee9c2ddf41f91c3d750ac4e commit: 57c13cb8630a7ee78d714a4cc15bceb3d0fd2838 Author: Manuel Rüger rueg eu> AuthorDate: Wed Dec 30 14:40:54 2020 +0000 Commit: Zac Medico gentoo org> CommitDate: Thu Dec 31 01:02:45 2020 +0000 URL: https://gitweb.gentoo.org/proj/portage.git/commit/?id=57c13cb8 Test with Python 3.10 Closes: https://github.com/gentoo/portage/pull/649 Signed-off-by: Manuel Rüger rueg.eu> Signed-off-by: Zac Medico gentoo.org> .travis.yml | 5 +++-- repoman/runtests | 5 +++-- runtests | 5 +++-- tox.ini | 4 ++-- 4 files changed, 11 insertions(+), 8 deletions(-) diff --git a/.travis.yml b/.travis.yml index d2935fdab..3a40617fb 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,10 +1,11 @@ -dist: bionic +dist: focal language: python python: - 3.6 - 3.7 - 3.8 - - 3.9-dev + - 3.9 + - 3.10-dev - pypy3 # command to install dependencies diff --git a/repoman/runtests b/repoman/runtests index 3edaaf0a8..5137b5e6e 100755 --- a/repoman/runtests +++ b/repoman/runtests @@ -24,12 +24,13 @@ PYTHON_SUPPORTED_VERSIONS = [ '2.7', '3.6', '3.7', - '3.8' + '3.8', + '3.9' ] # The rest are just "nice to have". PYTHON_NICE_VERSIONS = [ 'pypy3', - '3.9' + '3.10' ] EPREFIX = os.environ.get('PORTAGE_OVERRIDE_EPREFIX', '/') diff --git a/runtests b/runtests index 685a7d9c7..c062f46cb 100755 --- a/runtests +++ b/runtests @@ -23,12 +23,13 @@ import tempfile PYTHON_SUPPORTED_VERSIONS = [ '3.6', '3.7', - '3.8' + '3.8', + '3.9' ] # The rest are just "nice to have". PYTHON_NICE_VERSIONS = [ 'pypy3', - '3.9' + '3.10' ] EPREFIX = os.environ.get('PORTAGE_OVERRIDE_EPREFIX', '/') diff --git a/tox.ini b/tox.ini index d6c8cf3b3..8aabbd2ce 100644 --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,5 @@ [tox] -envlist = py36,py37,py38,py39,pypy3 +envlist = py36,py37,py38,py39,py310,pypy3 skipsdist = True [testenv] @@ -7,7 +7,7 @@ deps = pylint pygost pyyaml - py36,py37,py38,py39,pypy3: lxml!=4.2.0 + py36,py37,py38,py39,py310,pypy3: lxml!=4.2.0 setenv = PYTHONPATH={toxinidir}/lib commands =