Browse Source

Prefer building with python3 if possible

Caleb James DeLisle 3 years ago
parent
commit
09e697f449
1 changed files with 1 additions and 1 deletions
  1. 1 1
      node_build/FindPython.js

+ 1 - 1
node_build/FindPython.js

@@ -22,7 +22,7 @@ var Fs = require('fs');
 // de-prioritize because the testing script accepts ANY python3 version
 // (as of this writing, we don't know what python3 versions actually work)
 // whereas we know that python2.7 is the only working python2 version.
-var PYTHONS = ["python2.7", "python2", "python3.7", "python3", "python"];
+var PYTHONS = ["python3.7", "python3", "python2.7", "python2", "python"];
 
 var SCRIPT = [
     'import sys',