Skip to content

Commit c6e3b65

Browse files
cclaussrvagg
authored andcommitted
lib: raise the minimum Python version from 2.6 to 2.7
As discussed in #1811 PR-URL: #1818 Reviewed-By: Richard Lau <[email protected]> Reviewed-By: João Reis <[email protected]>
1 parent 64bb407 commit c6e3b65

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/find-python.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ PythonFinder.prototype = {
1919
argsExecutable: [ '-c', 'import sys; print(sys.executable);' ],
2020
argsVersion: [ '-c', 'import sys; print("%s.%s.%s" % sys.version_info[:3]);' ],
2121
semverRange: process.env.EXPERIMENTAL_NODE_GYP_PYTHON3 ? '2.7.x || >=3.5.0'
22-
: '>=2.6.0 <3.0.0',
22+
: '>=2.7.0 <3.0.0',
2323

2424
// These can be overridden for testing:
2525
execFile: cp.execFile,

0 commit comments

Comments
 (0)