commit:     57c13cb8630a7ee78d714a4cc15bceb3d0fd2838
Author:     Manuel Rüger <manuel <AT> rueg <DOT> eu>
AuthorDate: Wed Dec 30 14:40:54 2020 +0000
Commit:     Zac Medico <zmedico <AT> gentoo <DOT> 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 <manuel <AT> rueg.eu>
Signed-off-by: Zac Medico <zmedico <AT> 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 =

Reply via email to