Skip to content

Commit

Permalink
attempt #2
Browse files Browse the repository at this point in the history
  • Loading branch information
isaaccorley committed Nov 22, 2021
1 parent 4a0c1ae commit 1a02802
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -63,15 +63,21 @@ jobs:
- name: Install open3d (Windows Python 3.9)
run: |
pip install https://storage.googleapis.com/open3d-releases-master/python-wheels/open3d-0.13.0+d6db895-cp39-cp39-win_amd64.whl
if: ${{ runner.os == 'Windows' && runner.python-version == '3.9' }}
with:
python-version: ${{ '3.9' }}
if: ${{ runner.os == 'Windows' }}
- name: Install open3d (Linux Python 3.9)
run: |
pip install https://storage.googleapis.com/open3d-releases-master/python-wheels/open3d-0.13.0+d6db895-cp39-cp39-manylinux_2_27_x86_64.whl
if: ${{ runner.os == 'Linux' && runner.python-version == '3.9' }}
with:
python-version: ${{ '3.9' }}
if: ${{ runner.os == 'Linux' }}
- name: Install open3d (Mac Python 3.9)
run: |
pip install https://storage.googleapis.com/open3d-releases-master/python-wheels/open3d-0.13.0+d6db895-cp39-cp39-macosx_10_14_x86_64.whl
if: ${{ runner.os == 'macOS' && runner.python-version == '3.9' }}
with:
python-version: ${{ '3.9' }}
if: ${{ runner.os == 'macOS' }}
- name: Install pip dependencies
run: |
pip install cython numpy # needed for pycocotools
Expand Down

0 comments on commit 1a02802

Please sign in to comment.