Skip to content

Commit 62f99b6

Browse files
committed
[gh actions] Disable MacOS Python 3.9 build
github actions currently resolves the pyyaml pip install package for python 3.9 not to the required macos package, but to the default pyyaml 6.0.tar package, which is a linux distribution and fails on install. MacOS Python version 3.9 build will stay disabled until this is resolved.
1 parent 615b73c commit 62f99b6

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

.github/workflows/run-tests.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,13 @@ jobs:
5555
strategy:
5656
matrix:
5757
os: [macos-latest]
58-
python-version: ["3.6", "3.7", "3.8", "3.9", "3.10"]
58+
# github actions currently resolves the pyyaml pip install package
59+
# for python 3.9 not to the required macos package, but to the
60+
# default pyyaml 6.0.tar package, which is a linux distribution
61+
# and fails on install. MacOS Python version 3.9 build will stay
62+
# disabled until this is resolved.
63+
#python-version: ["3.6", "3.7", "3.8", "3.9", "3.10"]
64+
python-version: ["3.6", "3.7", "3.8", "3.10"]
5965
steps:
6066
- uses: actions/checkout@v2
6167
- name: Setup Python ${{ matrix.python-version }}

0 commit comments

Comments
 (0)