| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
1 parent cab20f2 commit d73c49e
4 files changed
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -9,7 +9,6 @@ command -v python3.13 >/dev/null && exec python3.13 "$0" "$@" | |||
| 9 | 9 | command -v python3.12 >/dev/null && exec python3.12 "$0" "$@" | |
| 10 | 10 | command -v python3.11 >/dev/null && exec python3.11 "$0" "$@" | |
| 11 | 11 | command -v python3.10 >/dev/null && exec python3.10 "$0" "$@" | |
| 12 | - command -v python3.9 >/dev/null && exec python3.9 "$0" "$@" | ||
| 13 | 12 | command -v python3 >/dev/null && exec python3 "$0" "$@" | |
| 14 | 13 | exec python "$0" "$@" | |
| 15 | 14 | ''' "$0" "$@" | |
@@ -23,7 +22,7 @@ except ImportError: | |||
| 23 | 22 | from distutils.spawn import find_executable as which | |
| 24 | 23 | ||
| 25 | 24 | print('Node.js android configure: Found Python {}.{}.{}...'.format(*sys.version_info)) | |
| 26 | - acceptable_pythons = ((3, 14), (3, 13), (3, 12), (3, 11), (3, 10), (3, 9)) | ||
| 25 | + acceptable_pythons = ((3, 14), (3, 13), (3, 12), (3, 11), (3, 10)) | ||
| 27 | 26 | if sys.version_info[:2] in acceptable_pythons: | |
| 28 | 27 | import android_configure | |
| 29 | 28 | else: | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -9,7 +9,6 @@ command -v python3.13 >/dev/null && exec python3.13 "$0" "$@" | |||
| 9 | 9 | command -v python3.12 >/dev/null && exec python3.12 "$0" "$@" | |
| 10 | 10 | command -v python3.11 >/dev/null && exec python3.11 "$0" "$@" | |
| 11 | 11 | command -v python3.10 >/dev/null && exec python3.10 "$0" "$@" | |
| 12 | - command -v python3.9 >/dev/null && exec python3.9 "$0" "$@" | ||
| 13 | 12 | command -v python3 >/dev/null && exec python3 "$0" "$@" | |
| 14 | 13 | exec python "$0" "$@" | |
| 15 | 14 | ''' "$0" "$@" | |
@@ -23,7 +22,7 @@ except ImportError: | |||
| 23 | 22 | from distutils.spawn import find_executable as which | |
| 24 | 23 | ||
| 25 | 24 | print('Node.js configure: Found Python {}.{}.{}...'.format(*sys.version_info)) | |
| 26 | - acceptable_pythons = ((3, 14), (3, 13), (3, 12), (3, 11), (3, 10), (3, 9)) | ||
| 25 | + acceptable_pythons = ((3, 14), (3, 13), (3, 12), (3, 11), (3, 10)) | ||
| 27 | 26 | if sys.version_info[:2] in acceptable_pythons: | |
| 28 | 27 | import configure | |
| 29 | 28 | else: | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -2409,7 +2409,7 @@ def make_bin_override(): | |||
| 2409 | 2409 | if sys.platform == 'win32': | |
| 2410 | 2410 | raise Exception('make_bin_override should not be called on win32.') | |
| 2411 | 2411 | # If the system python is not the python we are running (which should be | |
| 2412 | - # python 3.9+), then create a directory with a symlink called `python` to our | ||
| 2412 | + # python 3.10+), then create a directory with a symlink called `python` to our | ||
| 2413 | 2413 | # sys.executable. This directory will be prefixed to the PATH, so that | |
| 2414 | 2414 | # other tools that shell out to `python` will use the appropriate python | |
| 2415 | 2415 | ||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -7,7 +7,7 @@ exclude = [ | |||
| 7 | 7 | "tools/eslint/node_modules" | |
| 8 | 8 | ] | |
| 9 | 9 | line-length = 172 | |
| 10 | - target-version = "py39" | ||
| 10 | + target-version = "py310" | ||
| 11 | 11 | ||
| 12 | 12 | [tool.ruff.lint] | |
| 13 | 13 | select = [ | |
| Back | FazBrowse Home | New Git URL |
0 commit comments