Skip to content

Commit

Permalink
Added python 3.12 and upgraded pytorch version for tests (#1517)
Browse files Browse the repository at this point in the history
  • Loading branch information
ternaus authored Feb 15, 2024
1 parent 5a36776 commit ed1be53
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
strategy:
matrix:
operating-system: [ubuntu-latest, windows-latest, macos-latest]
python-version: [3.8, 3.9, "3.10", "3.11"]
python-version: [3.8, 3.9, "3.10", "3.11", "3.12"]
fail-fast: false
steps:
- name: Checkout
Expand All @@ -30,11 +30,11 @@ jobs:
matrix.operating-system == 'ubuntu-latest' ||
matrix.operating-system == 'windows-latest'
run: >
pip install torch==2.0.1 torchvision==0.15.2
pip install torch==2.2.0 torchvision==0.17.0
--extra-index-url https://download.pytorch.org/whl/cpu
- name: Install PyTorch on MacOS
if: matrix.operating-system == 'macos-latest'
run: pip install torch==2.0.1 torchvision==0.15.2
run: pip install torch==2.2.0 torchvision==0.17.0
- name: Install dependencies
run: |
pip install .[tests]
Expand All @@ -51,7 +51,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.11"]
python-version: ["3.8"]
steps:
- name: Checkout
uses: actions/checkout@v4
Expand Down

0 comments on commit ed1be53

Please sign in to comment.