summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Gilbert <floppym@gentoo.org>2016-10-27 20:12:10 -0400
committerMike Gilbert <floppym@gentoo.org>2016-10-27 21:33:22 -0400
commit4e62500200bdf984102728d644b1d3f00ef13c9e (patch)
tree82c8e21ac45023f22fa44510e3da7f7b7dd0ad02 /eclass/python-utils-r1.eclass
parentx11-misc/compton: remove old (diff)
downloadgentoo-4e62500200bdf984102728d644b1d3f00ef13c9e.tar.gz
gentoo-4e62500200bdf984102728d644b1d3f00ef13c9e.tar.bz2
gentoo-4e62500200bdf984102728d644b1d3f00ef13c9e.zip
python-utils-r1.eclass: drop support for python3_3
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 60eedf7e2ab3..9d4eb379d669 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_3 python3_4 python3_5
+ python3_4 python3_5
)
readonly _PYTHON_ALL_IMPLS
@@ -68,10 +68,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_[345]|jython2_7)
+ python2_7|python3_[45]|jython2_7)
return 0
;;
- pypy1_[89]|pypy2_0|python2_[56]|python3_[12])
+ pypy1_[89]|pypy2_0|python2_[56]|python3_[123])
return 1
;;
pypy|pypy3)