diff options
author | Michał Górny <mgorny@gentoo.org> | 2023-05-01 13:55:22 +0200 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2023-05-01 14:43:27 +0100 |
commit | cc939b81c322279e65f82c8c222dcb54015c65df (patch) | |
tree | d8548819f7419688948a669424297d052e1d6d9c /eclass | |
parent | dev-lang/python: Remove python-exec dep from 3.9* (diff) | |
download | gentoo-cc939b81c322279e65f82c8c222dcb54015c65df.tar.gz gentoo-cc939b81c322279e65f82c8c222dcb54015c65df.tar.bz2 gentoo-cc939b81c322279e65f82c8c222dcb54015c65df.zip |
eclass/tests/python-utils-r1.sh: Stop testing python3_9
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'eclass')
-rwxr-xr-x | eclass/tests/python-utils-r1.sh | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/eclass/tests/python-utils-r1.sh b/eclass/tests/python-utils-r1.sh index 9d37bf0b24d0..d8b414219704 100755 --- a/eclass/tests/python-utils-r1.sh +++ b/eclass/tests/python-utils-r1.sh @@ -64,7 +64,7 @@ tmpfile=$(mktemp) inherit python-utils-r1 -for minor in 9 10 11; do +for minor in 10 11; do ebegin "Testing python3.${minor}" eindent test_var EPYTHON "python3_${minor}" "python3.${minor}" @@ -199,16 +199,10 @@ test_is "_python_impl_matches python3_6 python*" 0 test_is "_python_impl_matches python3_7 python*" 0 test_is "_python_impl_matches pypy3 python*" 1 set +f -test_is "_python_impl_matches python3_9 3.9" 0 -test_is "_python_impl_matches python3_9 3.10" 1 -test_is "_python_impl_matches python3_9 3.11" 1 -test_is "_python_impl_matches python3_10 3.9" 1 test_is "_python_impl_matches python3_10 3.10" 0 test_is "_python_impl_matches python3_10 3.11" 1 -test_is "_python_impl_matches python3_11 3.9" 1 test_is "_python_impl_matches python3_11 3.10" 1 test_is "_python_impl_matches python3_11 3.11" 0 -test_is "_python_impl_matches pypy3 3.9" 0 test_is "_python_impl_matches pypy3 3.10" 1 test_is "_python_impl_matches pypy3 3.11" 1 eoutdent |