Skip to content

Commit

Permalink
ENH: GHA: Only compile Windows Python 11 and above in PRs
Browse files Browse the repository at this point in the history
  • Loading branch information
Simon Rit committed Dec 12, 2024
1 parent 0c2e5a5 commit b456335
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/build-test-package-python-cuda.yml
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ jobs:
strategy:
max-parallel: 2
matrix:
python3-minor-version: ["8","9","10","11"]
python3-minor-version: ${{ github.event_name == 'pull_request' && fromJSON('["11"]') || fromJSON('["9","10","11"]') }}
cuda-version: ["116","121"]

steps:
Expand Down

0 comments on commit b456335

Please sign in to comment.