don't overspecify required python version (#28842)

Summary:
Pull Request resolved: https://github.com/pytorch/pytorch/pull/28842

We don't care which python version, and github actions has changed the
versions available, breaking our CI. So just pin it to 3-something to
make it more future proof

Test Plan: Imported from OSS

Differential Revision: D18205349

Pulled By: suo

fbshipit-source-id: bf260dc29a138dd8bf8c85081a182aae298fe86d
This commit is contained in:
Michael Suo
2019-10-29 11:58:51 -07:00
committed by Facebook Github Bot
parent b7d472a109
commit 83331bf123

View File

@ -13,7 +13,7 @@ jobs:
- name: Setup Python
uses: actions/setup-python@v1
with:
python-version: 3.7.4
python-version: 3.x
architecture: x64
- name: Checkout PyTorch
uses: actions/checkout@master
@ -28,7 +28,7 @@ jobs:
- name: Setup Python
uses: actions/setup-python@v1
with:
python-version: 3.7.4
python-version: 3.x
architecture: x64
- name: Checkout PyTorch
uses: actions/checkout@master
@ -69,7 +69,7 @@ jobs:
- name: Setup Python
uses: actions/setup-python@v1
with:
python-version: 3.7.4
python-version: 3.x
architecture: x64
- name: Checkout PyTorch
uses: actions/checkout@master
@ -84,7 +84,7 @@ jobs:
- name: Setup Python
uses: actions/setup-python@v1
with:
python-version: 3.7.4
python-version: 3.x
architecture: x64
- name: Checkout PyTorch
uses: actions/checkout@master
@ -99,7 +99,7 @@ jobs:
- name: Setup Python
uses: actions/setup-python@v1
with:
python-version: 3.7.4
python-version: 3.x
architecture: x64
- name: Fetch PyTorch
uses: actions/checkout@master
@ -174,7 +174,7 @@ jobs:
- name: Setup Python
uses: actions/setup-python@v1
with:
python-version: 3.7.4
python-version: 3.x
architecture: x64
- name: Checkout PyTorch
uses: actions/checkout@master