diff options
author | Michaël Zasso <targos@protonmail.com> | 2020-07-03 15:19:28 +0200 |
---|---|---|
committer | Myles Borins <mylesborins@github.com> | 2020-07-16 17:09:09 -0400 |
commit | de250c136cf76fdb120b881316ebb08347565e48 (patch) | |
tree | d429e94090dda5282ee054f7712b4d81a0516884 /.github | |
parent | a89bcf72fb577105ef6cfae1b8058c8823493690 (diff) | |
download | node-new-de250c136cf76fdb120b881316ebb08347565e48.tar.gz |
build: recommend Python 3.8 to build on Windows
PR-URL: https://github.com/nodejs/node/pull/34182
Reviewed-By: Christian Clauss <cclauss@me.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Tobias Nießen <tniessen@tnie.de>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Jiawen Geng <technicalcute@gmail.com>
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/build-tarball.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/build-tarball.yml b/.github/workflows/build-tarball.yml index 3a3138a677..f17fabd840 100644 --- a/.github/workflows/build-tarball.yml +++ b/.github/workflows/build-tarball.yml @@ -72,10 +72,10 @@ jobs: run: | git config --global core.autocrlf true - uses: actions/checkout@v2 - - name: Set up Python 2.7 - uses: actions/setup-python@v1 + - name: Set up Python 3.8 + uses: actions/setup-python@v2 with: - python-version: 2.7 + python-version: 3.8 - name: Environment Information run: npx envinfo - name: Download tarball |