| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
1 parent cc1cd2b commit 03827dd
2 files changed
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -246,7 +246,7 @@ transition before the year-end deadline. | |||
| 246 | 246 | * GNU Make 3.81 or newer | |
| 247 | 247 | * Python (see note above) | |
| 248 | 248 | * Python 2.7 | |
| 249 | - * Python 3.5, 3.6, and 3.7 are experimental. | ||
| 249 | + * Python 3.5, 3.6, 3.7, and 3.8 are experimental. | ||
| 250 | 250 | ||
| 251 | 251 | Installation via Linux package manager can be achieved with: | |
| 252 | 252 | ||
@@ -262,7 +262,7 @@ FreeBSD and OpenBSD users may also need to install `libexecinfo`. | |||
| 262 | 262 | * Xcode Command Line Tools >= 10 for macOS | |
| 263 | 263 | * Python (see note above) | |
| 264 | 264 | * Python 2.7 | |
| 265 | - * Python 3.5, 3.6, and 3.7 are experimental. | ||
| 265 | + * Python 3.5, 3.6, 3.7, and 3.8 are experimental. | ||
| 266 | 266 | ||
| 267 | 267 | macOS users can install the `Xcode Command Line Tools` by running | |
| 268 | 268 | `xcode-select --install`. Alternatively, if you already have the full Xcode | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -7,6 +7,7 @@ | |||
| 7 | 7 | # pyenv will alert which shims are available and then will fail the build. | |
| 8 | 8 | _=[ 'exec' '/bin/sh' '-c' ''' | |
| 9 | 9 | test ${TRAVIS} && exec python "$0" "$@" # workaround for pyenv on Travis CI | |
| 10 | + which python3.8 >/dev/null && exec python3.8 "$0" "$@" | ||
| 10 | 11 | which python3.7 >/dev/null && exec python3.7 "$0" "$@" | |
| 11 | 12 | which python3.6 >/dev/null && exec python3.6 "$0" "$@" | |
| 12 | 13 | which python3.5 >/dev/null && exec python3.5 "$0" "$@" | |
@@ -20,7 +21,7 @@ import sys | |||
| 20 | 21 | from distutils.spawn import find_executable | |
| 21 | 22 | ||
| 22 | 23 | print('Node configure: Found Python {0}.{1}.{2}...'.format(*sys.version_info)) | |
| 23 | - acceptable_pythons = ((2, 7), (3, 7), (3, 6), (3, 5)) | ||
| 24 | + acceptable_pythons = ((3, 8), (3, 7), (3, 6), (3, 5), (2, 7)) | ||
| 24 | 25 | if sys.version_info[:2] in acceptable_pythons: | |
| 25 | 26 | import configure | |
| 26 | 27 | else: | |
| Back | FazBrowse Home | New Git URL |
0 commit comments