Skip to content

Commit a85ab12

Browse files
committed
[SPARK-25079][PYTHON][BRANCH-2.3] update python3 executable to 3.6.x
## What changes were proposed in this pull request? have jenkins test against python3.6 (instead of 3.4). ## How was this patch tested? extensive testing on both the centos and ubuntu jenkins workers revealed that 2.3 probably doesn't like python 3.6... :( NOTE: this is just for branch-2.3 PLEASE DO NOT MERGE Author: shane knapp <incomplete@gmail.com> Closes #24380 from shaneknapp/update-python-executable-2.3.
1 parent 233646c commit a85ab12

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

python/run-tests.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ def run_individual_python_test(test_name, pyspark_python):
114114

115115

116116
def get_default_python_executables():
117-
python_execs = [x for x in ["python2.7", "python3.4", "pypy"] if which(x)]
117+
python_execs = [x for x in ["python2.7", "python3.6", "pypy"] if which(x)]
118118
if "python2.7" not in python_execs:
119119
LOGGER.warning("Not testing against `python2.7` because it could not be found; falling"
120120
" back to `python` instead")

0 commit comments

Comments
 (0)