Skip to content

Commit

Permalink
python-utils-r1.eclass: drop support for python3_3
Browse files Browse the repository at this point in the history
  • Loading branch information
floppym committed Oct 28, 2016
1 parent d217be3 commit 4e62500
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions eclass/python-utils-r1.eclass
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand All @@ -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)
Expand Down

0 comments on commit 4e62500

Please sign in to comment.