summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Seifert <soap@gentoo.org>2019-12-30 01:48:32 +0100
committerMichał Górny <mgorny@gentoo.org>2019-12-30 13:58:50 +0100
commitf0f388d6e7b7990006384bd024ec5bf2d7f66737 (patch)
tree84a0f47f878723c6d4a46d11f734d50b22a793dc /eclass/python-utils-r1.eclass
parentpython-utils-r1.eclass: Constrain to EAPI >= 5 (diff)
downloadgentoo-f0f388d6e7b7990006384bd024ec5bf2d7f66737.tar.gz
gentoo-f0f388d6e7b7990006384bd024ec5bf2d7f66737.tar.bz2
gentoo-f0f388d6e7b7990006384bd024ec5bf2d7f66737.zip
python-utils-r1.eclass: Remove PYTHON_TARGETS="python3_5"
* Python 3.5 will go EOL on 2020-09-13 and in order to reduce testing and maintenance burden, we want to keep the number of active Py3 impls below four. https://devguide.python.org/#status-of-python-branches Signed-off-by: David Seifert <soap@gentoo.org> Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'eclass/python-utils-r1.eclass')
-rw-r--r--eclass/python-utils-r1.eclass6
1 files changed, 3 insertions, 3 deletions
diff --git a/eclass/python-utils-r1.eclass b/eclass/python-utils-r1.eclass
index e0711a35e3ae..370898bcea00 100644
--- a/eclass/python-utils-r1.eclass
+++ b/eclass/python-utils-r1.eclass
@@ -42,7 +42,7 @@ _PYTHON_ALL_IMPLS=(
jython2_7
pypy pypy3
python2_7
- python3_5 python3_6 python3_7 python3_8
+ python3_6 python3_7 python3_8
)
readonly _PYTHON_ALL_IMPLS
@@ -78,10 +78,10 @@ _python_impl_supported() {
# keep in sync with _PYTHON_ALL_IMPLS!
# (not using that list because inline patterns shall be faster)
case "${impl}" in
- python2_7|python3_[5678]|jython2_7|pypy|pypy3)
+ python2_7|python3_[678]|jython2_7|pypy|pypy3)
return 0
;;
- pypy1_[89]|pypy2_0|python2_[56]|python3_[1234])
+ pypy1_[89]|pypy2_0|python2_[56]|python3_[12345])
return 1
;;
*)