Skip to content

Commit

Permalink
ci: fix py version for win
Browse files Browse the repository at this point in the history
  • Loading branch information
bonjourmauko committed Sep 27, 2024
1 parent 0126ecb commit 2a83579
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/merge.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
matrix:
os: [ubuntu-latest, windows-latest]
numpy: [2.1.1, 1.24.2]
python: [3.12.6, 3.9.20] # Patch version must be specified to avoid any cache confusion, since the cache key depends on the full Python version. If left unspecified, different patch versions could be allocated between jobs, and any such difference would lead to a cache not found error.
python: [3.12.6, 3.9.13] # Patch version must be specified to avoid any cache confusion, since the cache key depends on the full Python version. If left unspecified, different patch versions could be allocated between jobs, and any such difference would lead to a cache not found error.
include:
- os: ubuntu-latest
activate_command: source venv/bin/activate
Expand All @@ -35,7 +35,7 @@ jobs:
matrix:
os: [ubuntu-latest, windows-latest]
numpy: [2.1.1, 1.24.2]
python: [3.12.6, 3.9.20] # Patch version must be specified to avoid any cache confusion, since the cache key depends on the full Python version. If left unspecified, different patch versions could be allocated between jobs, and any such difference would lead to a cache not found error.
python: [3.12.6, 3.9.13] # Patch version must be specified to avoid any cache confusion, since the cache key depends on the full Python version. If left unspecified, different patch versions could be allocated between jobs, and any such difference would lead to a cache not found error.
include:
- os: ubuntu-latest
activate_command: source venv/bin/activate
Expand All @@ -54,7 +54,7 @@ jobs:
fail-fast: true
matrix:
numpy: [1.24.2]
python: [3.12.6, 3.9.20] # Patch version must be specified to avoid any cache confusion, since the cache key depends on the full Python version. If left unspecified, different patch versions could be allocated between jobs, and any such difference would lead to a cache not found error.
python: [3.12.6, 3.9.13] # Patch version must be specified to avoid any cache confusion, since the cache key depends on the full Python version. If left unspecified, different patch versions could be allocated between jobs, and any such difference would lead to a cache not found error.
uses: ./.github/workflows/_lint.yaml
with:
os: ubuntu-latest
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/push.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
matrix:
os: [ubuntu-latest, windows-latest]
numpy: [2.1.1, 1.24.2]
python: [3.12.6, 3.9.20] # Patch version must be specified to avoid any cache confusion, since the cache key depends on the full Python version. If left unspecified, different patch versions could be allocated between jobs, and any such difference would lead to a cache not found error.
python: [3.12.6, 3.9.13] # Patch version must be specified to avoid any cache confusion, since the cache key depends on the full Python version. If left unspecified, different patch versions could be allocated between jobs, and any such difference would lead to a cache not found error.
include:
- os: ubuntu-latest
activate_command: source venv/bin/activate
Expand All @@ -35,7 +35,7 @@ jobs:
matrix:
os: [ubuntu-latest, windows-latest]
numpy: [2.1.1, 1.24.2]
python: [3.12.6, 3.9.20] # Patch version must be specified to avoid any cache confusion, since the cache key depends on the full Python version. If left unspecified, different patch versions could be allocated between jobs, and any such difference would lead to a cache not found error.
python: [3.12.6, 3.9.13] # Patch version must be specified to avoid any cache confusion, since the cache key depends on the full Python version. If left unspecified, different patch versions could be allocated between jobs, and any such difference would lead to a cache not found error.
include:
- os: ubuntu-latest
activate_command: source venv/bin/activate
Expand All @@ -54,7 +54,7 @@ jobs:
fail-fast: true
matrix:
numpy: [1.24.2]
python: [3.12.6, 3.9.20] # Patch version must be specified to avoid any cache confusion, since the cache key depends on the full Python version. If left unspecified, different patch versions could be allocated between jobs, and any such difference would lead to a cache not found error.
python: [3.12.6, 3.9.13] # Patch version must be specified to avoid any cache confusion, since the cache key depends on the full Python version. If left unspecified, different patch versions could be allocated between jobs, and any such difference would lead to a cache not found error.
uses: ./.github/workflows/_lint.yaml
with:
os: ubuntu-latest
Expand Down

0 comments on commit 2a83579

Please sign in to comment.