Skip to content

Commit

Permalink
python-utils-r1.eclass: Remove PYTHON_TARGETS="python3_5"
Browse files Browse the repository at this point in the history
* 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 <[email protected]>
Signed-off-by: Michał Górny <[email protected]>
  • Loading branch information
SoapGentoo authored and mgorny committed Dec 30, 2019
1 parent 0384615 commit f0f388d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions eclass/python-utils-r1.eclass
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down Expand Up @@ -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
;;
*)
Expand Down
2 changes: 1 addition & 1 deletion eclass/tests/python-utils-r1.sh
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ test_is "_python_impl_supported python3_1" 1
test_is "_python_impl_supported python3_2" 1
test_is "_python_impl_supported python3_3" 1
test_is "_python_impl_supported python3_4" 1
test_is "_python_impl_supported python3_5" 0
test_is "_python_impl_supported python3_5" 1
test_is "_python_impl_supported python3_6" 0
test_is "_python_impl_supported python3_7" 0
test_is "_python_impl_supported python3_8" 0
Expand Down

0 comments on commit f0f388d

Please sign in to comment.