summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorManuel Rüger <mrueg@gentoo.org>2018-11-25 13:25:34 +0100
committerZac Medico <zmedico@gentoo.org>2018-11-25 14:29:00 -0800
commita81621eaa238489fc85d39f594707813496afceb (patch)
tree374dc5690b59e9e8ad1c9f85f4c6900de5d26b5a /runtests
parentemerge --help: add -U option short for --changed-use (diff)
downloadportage-a81621eaa238489fc85d39f594707813496afceb.tar.gz
portage-a81621eaa238489fc85d39f594707813496afceb.tar.bz2
portage-a81621eaa238489fc85d39f594707813496afceb.zip
Enable python3.7 testing
Reflect recent python versions in test scripts Closes: https://github.com/gentoo/portage/pull/383 Signed-off-by: Manuel Rüger <mrueg@gentoo.org> Signed-off-by: Zac Medico <zmedico@gentoo.org>
Diffstat (limited to 'runtests')
-rwxr-xr-xruntests6
1 files changed, 3 insertions, 3 deletions
diff --git a/runtests b/runtests
index 597ccaede..7c3ebb1ca 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.3',
'3.4',
+ '3.5',
+ '3.6'
]
# The rest are just "nice to have".
PYTHON_NICE_VERSIONS = [
'pypy',
- '3.5',
- '3.6',
+ '3.7'
]
EPREFIX = os.environ.get('PORTAGE_OVERRIDE_EPREFIX', '/')