Skip to content

Commit

Permalink
Fix Python version specification in workflow file
Browse files Browse the repository at this point in the history
  • Loading branch information
jmwright committed Feb 6, 2024
1 parent d96d59f commit d6c1097
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/local-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
strategy:
matrix:
os: [ 'macos-14' ] #[ 'ubuntu-22.04', 'macos-11', 'macos-14', 'windows-2019' ]
python-version: '3.10'
python-version: [ '3.10' ]

steps:

Expand Down

1 comment on commit d6c1097

@jdegenstein
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Looking at the most recent build logs, it appears that everything successfully built -- cadquery-ocp wheels for py 3.9, 3.10, 3.11 and 3.12. The testing failed because it is bound to only python-3.10 and it tried to install another version (3.12 to be specific). I think at this point the best idea is to convert local-build.sh to a pure yml build process. I will take a quick stab at it.

Please sign in to comment.