Skip to content

Commit

Permalink
[release] binaries build
Browse files Browse the repository at this point in the history
  • Loading branch information
zou3519 committed Mar 10, 2022
1 parent 6e94fdd commit 66a65ef
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,14 @@ jobs:
container: pytorch/manylinux-cpu
strategy:
matrix:
python_abi: [ "cp37-cp37m", "cp38-cp38", "cp39-cp39" ]
python_abi: [ "cp37-cp37m", "cp38-cp38", "cp39-cp39", "cp310-cp310" ]
steps:
- name: Checkout functorch
uses: actions/checkout@v2
- name: Install PyTorch 1.11 RC
run: |
export PATH="/opt/python/${{ matrix.python_abi }}/bin:$PATH"
python3 -mpip install --pre torch==1.11.0 -f https://download.pytorch.org/whl/test/cpu/torch_test.html --upgrade
python3 -mpip install torch==1.11.0
- name: Build wheel
run: |
export PATH="/opt/python/${{ matrix.python_abi }}/bin:$PATH"
Expand All @@ -37,7 +37,7 @@ jobs:
runs-on: macos-latest
strategy:
matrix:
python_version: [ "3.7", "3.8", "3.9" ]
python_version: [ "3.7", "3.8", "3.9", "3.10" ]
steps:
- name: Setup Python
uses: actions/setup-python@v2
Expand All @@ -48,7 +48,7 @@ jobs:
uses: actions/checkout@v2
- name: Install PyTorch 1.11 RC
run: |
python3 -mpip install --pre torch==1.11.0 -f https://download.pytorch.org/whl/test/cpu/torch_test.html --upgrade
python3 -mpip install torch==1.11.0
- name: Build wheel
run: |
export CC=clang CXX=clang++
Expand Down

0 comments on commit 66a65ef

Please sign in to comment.