Force python 3.11 for macos
3.12 does not work.
This commit is contained in:
parent
da4c46015a
commit
bd4005aa6a
41 changed files with 210 additions and 0 deletions
|
|
@ -74,6 +74,14 @@ for file in (this_dir / 'checks').glob('*.yml'):
|
|||
useAllPlatformBundle = checkSpecification['useAllPlatformBundle']
|
||||
|
||||
steps = [
|
||||
{
|
||||
'name': 'Setup Python on MacOS',
|
||||
'uses': 'actions/setup-python@v2',
|
||||
'if': 'matrix.os == \'macos-latest\'',
|
||||
'with': {
|
||||
'python-version': '3.11'
|
||||
}
|
||||
},
|
||||
{
|
||||
'name': 'Check out repository',
|
||||
'uses': 'actions/checkout@v4'
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue