Skip to content

Commit

Permalink
COMP: Upgrade GitHub Actions CI python-version from 3.8 to "3.10"
Browse files Browse the repository at this point in the history
Aims to fix GitHub Actions CI build (macos-14), saying:

> Version 3.8 was not found in the local cache
> Error: Version 3.8 with arch arm64 not found
> The list of all available versions can be found here: https://raw.githubusercontent.com/actions/python-versions/main/versions-manifest.json

Note that "3.10" must have double-quotes, to avoid being interpreted as the floating point number `3.1`.
  • Loading branch information
N-Dekker committed May 7, 2024
1 parent 3676d18 commit ba98abe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/ElastixGitHubActions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: 3.8
python-version: "3.10"

- name: Install build dependencies
run: |
Expand Down

0 comments on commit ba98abe

Please sign in to comment.