commit:     d4d1c3110a5bcea44e3c62e8c86d7a999325a61e
Author:     Manuel RĂ¼ger <manuel <AT> rueg <DOT> eu>
AuthorDate: Sun Mar  1 12:44:56 2020 +0000
Commit:     Zac Medico <zmedico <AT> gentoo <DOT> 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 <zmedico <AT> 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 =

Reply via email to