| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
1 parent 9506f77 commit 3077f6a
1 file changed
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -4,6 +4,8 @@ | |||
| 4 | 4 | # Note that the mix of single and double quotes is intentional, | |
| 5 | 5 | # as is the fact that the ] goes on a new line. | |
| 6 | 6 | _=[ 'exec' '/bin/sh' '-c' ''' | |
| 7 | + command -v python3.13 >/dev/null && exec python3.13 "$0" "$@" | ||
| 8 | + command -v python3.12 >/dev/null && exec python3.12 "$0" "$@" | ||
| 7 | 9 | command -v python3.11 >/dev/null && exec python3.11 "$0" "$@" | |
| 8 | 10 | command -v python3.10 >/dev/null && exec python3.10 "$0" "$@" | |
| 9 | 11 | command -v python3.9 >/dev/null && exec python3.9 "$0" "$@" | |
@@ -21,7 +23,7 @@ except ImportError: | |||
| 21 | 23 | from distutils.spawn import find_executable as which | |
| 22 | 24 | ||
| 23 | 25 | print('Node.js android configure: Found Python {}.{}.{}...'.format(*sys.version_info)) | |
| 24 | - acceptable_pythons = ((3, 11), (3, 10), (3, 9), (3, 8)) | ||
| 26 | + acceptable_pythons = ((3, 13), (3, 12), (3, 11), (3, 10), (3, 9), (3, 8)) | ||
| 25 | 27 | if sys.version_info[:2] in acceptable_pythons: | |
| 26 | 28 | import android_configure | |
| 27 | 29 | else: | |
| Back | FazBrowse Home | New Git URL |
0 commit comments