Skip to content

Commit

Permalink
Really exclude Python 3.8 test on macOS 14
Browse files Browse the repository at this point in the history
  • Loading branch information
kdeldycke committed Feb 18, 2024
1 parent 04e0ee8 commit 47d8c3a
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -55,13 +55,14 @@ jobs:
include: list[dict[str, str]] = []
# List of variants to exclude from the matrix.
exclude: list[dict[str, str]] = []
# List of unstable criterions.
unstable: list[dict[str, str]] = [
exclude: list[dict[str, str]] = [
# XXX Python <3.10 is not available on new macOS M1 runners.
# See: https://github.com/actions/setup-python/issues/808
{"os": "macos-14", "python-version": "3.8"},
]
# List of unstable criterions.
unstable: list[dict[str, str]] = [
# msgpack does not work on Python 3.13-dev yet:
# https://github.com/msgpack/msgpack-python/issues/573
{"python-version": "3.13-dev"},
Expand Down

0 comments on commit 47d8c3a

Please sign in to comment.