Skip to content

Commit

Permalink
Run tests only on Python 3.12
Browse files Browse the repository at this point in the history
Running on just one version was requested, as to reduce the compute we
consume through the CI.
  • Loading branch information
mweinelt committed Jan 12, 2025
1 parent 2442a29 commit 2469bf8
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions .github/workflows/test_package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,16 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12"]
pytorch-version: ["2.5.1", "nightly"]
python-version: [
# "3.9",
# "3.10",
# "3.11",
"3.12"
]
pytorch-version: [
"2.5.1",
"nightly"
]

# Timeout: https://stackoverflow.com/a/59076067/4521646
timeout-minutes: 10
Expand Down

0 comments on commit 2469bf8

Please sign in to comment.