Skip to content

Commit b9985ea

Browse files
committed
Ensure Python2.7 is not tested
1 parent daaff7c commit b9985ea

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/julia/tests/test_compatible_exe.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ def discover_other_pythons():
2323
[sys.executable, "--version"], universal_newlines=True, stderr=subprocess.STDOUT
2424
)
2525

26-
candidate_names = ["python", "python2", "python2.7", "python3"] + [
26+
candidate_names = ["python", "python3"] + [
2727
"python3.{}".format(i) for i in range(20)
2828
]
2929
found = {}

0 commit comments

Comments
 (0)