diff --git a/.github/workflows/tests.yaml b/.github/workflows/tests.yaml index 165f356d169..e0e1447b381 100644 --- a/.github/workflows/tests.yaml +++ b/.github/workflows/tests.yaml @@ -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