summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2019-03-21 14:41:48 +0100
committerMichał Górny <mgorny@gentoo.org>2019-03-21 19:01:30 +0100
commit8733266b07634ae00b8276033039aac8cfe78bd6 (patch)
tree4cdbc8c8b9f9c76d697a1c8a9a6cb7a0b01afdf3
parentdev-python/pythondialog: Drop 3.2.2 (diff)
downloadgentoo-8733266b07634ae00b8276033039aac8cfe78bd6.tar.gz
gentoo-8733266b07634ae00b8276033039aac8cfe78bd6.tar.bz2
gentoo-8733266b07634ae00b8276033039aac8cfe78bd6.zip
python-utils-r1.eclass: Disable python3_4
Signed-off-by: Michał Górny <mgorny@gentoo.org>
-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 e3cf82b4b58f..f8f51ecb694a 100644
--- a/eclass/python-utils-r1.eclass
+++ b/eclass/python-utils-r1.eclass
@@ -44,7 +44,7 @@ _PYTHON_ALL_IMPLS=(
jython2_7
pypy pypy3
python2_7
- python3_4 python3_5 python3_6 python3_7
+ python3_5 python3_6 python3_7
)
readonly _PYTHON_ALL_IMPLS
@@ -80,10 +80,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_[4567]|jython2_7)
+ python2_7|python3_[567]|jython2_7)
return 0
;;
- pypy1_[89]|pypy2_0|python2_[56]|python3_[123])
+ pypy1_[89]|pypy2_0|python2_[56]|python3_[1234])
return 1
;;
pypy|pypy3)