Skip to content

Commit 1cf9f45

Browse files
authored
fix
1 parent 69d68ea commit 1cf9f45

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

utils/info2json.py

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,18 @@
11
import json
22
from argparse import ArgumentParser
33

4+
# TODO: Monitor https://github.com/federicocarboni/setup-ffmpeg/issues/21
5+
macos_version = "macos-13"
6+
47
testing_matrix_ghact = {
58
"python-version": ["3.8", "3.9", "3.10", "3.11", "3.12"],
6-
# TODO: Monitor https://github.com/federicocarboni/setup-ffmpeg/issues/21
7-
"os": ["windows-latest", "macos-13", "ubuntu-latest"],
9+
"os": ["windows-latest", macos_version, "ubuntu-latest"],
810
"exclude": [{"os": "windows-latest", "python-version": "3.11"}],
911
}
1012

1113
tutorial_testing_matrix_ghact = {
1214
"python-version": ["3.8", "3.9", "3.10", "3.11", "3.12"],
13-
"os": ["macos-latest", "ubuntu-latest"],
15+
"os": [macos_version, "ubuntu-latest"],
1416
}
1517

1618
deploy_matrix_ghact = {"python-version": ["3.8"], "os": ["ubuntu-latest"]}

0 commit comments

Comments
 (0)