Skip to content

Commit

Permalink
fixing builds
Browse files Browse the repository at this point in the history
  • Loading branch information
amontanez24 committed Jul 5, 2023
1 parent 5e5be09 commit 8bc8278
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,12 @@ jobs:
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- if: matrix.os == 'windows-latest' && matrix.python-version != 3.10
- if: matrix.os == 'windows-latest' && matrix.python-version < 3.10
name: Install dependencies - Windows
run: |
python -m pip install --upgrade pip
python -m pip install 'torch>=1.8.0,<2' -f https://download.pytorch.org/whl/cpu/torch/
- if: matrix.os == 'windows-latest' && matrix.python-version == 3.10
- if: matrix.os == 'windows-latest' && matrix.python-version >= 3.10
name: Install dependencies - Windows
run: |
python -m pip install --upgrade pip
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/minimum.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- if: matrix.os == 'windows-latest' && matrix.python-version != '3.10'
- if: matrix.os == 'windows-latest' && matrix.python-version < '3.10'
name: Install dependencies - Windows
run: |
python -m pip install --upgrade pip
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/unit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,12 @@ jobs:
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- if: matrix.os == 'windows-latest' && matrix.python-version != 3.10
- if: matrix.os == 'windows-latest' && matrix.python-version < 3.10
name: Install dependencies - Windows
run: |
python -m pip install --upgrade pip
python -m pip install 'torch>=1.8.0,<2' -f https://download.pytorch.org/whl/cpu/torch/
- if: matrix.os == 'windows-latest' && matrix.python-version == 3.10
- if: matrix.os == 'windows-latest' && matrix.python-version >= 3.10
name: Install dependencies - Windows
run: |
python -m pip install --upgrade pip
Expand Down

0 comments on commit 8bc8278

Please sign in to comment.