Skip to content

Commit

Permalink
chore: Remove macos from test workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
lRomul committed Apr 24, 2024
1 parent 9552e6f commit a62c30d
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:

strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
os: [ubuntu-latest, windows-latest]
python-version: ["3.8", "3.9", "3.10", "3.11"]
fail-fast: false

Expand All @@ -24,11 +24,7 @@ jobs:
with:
python-version: ${{ matrix.python-version }}
- name: Install CPU PyTorch
if: ${{ matrix.os != 'macos-latest' }}
run: pip3 install torch==2.1.2 --index-url https://download.pytorch.org/whl/cpu
- name: Install PyTorch on macOS
if: ${{ matrix.os == 'macos-latest' }}
run: pip3 install torch==2.1.2
run: pip3 install torch==2.3.0 --index-url https://download.pytorch.org/whl/cpu
- name: Install test dependencies
run: |
python -m pip install --upgrade pip
Expand Down

0 comments on commit a62c30d

Please sign in to comment.