diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2022-10-27 05:54:30 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2022-10-27 06:26:51 -0400 |
commit | b6e16f8a3bc9fc07142e1da8f313f06a31757826 (patch) | |
tree | 0ddc4c633b41a0e07b0188d2c7d6a96c0009e799 /.github | |
parent | 06ef6f09e95fa16cb35cfcf685b6aa0b06091450 (diff) | |
download | python-coveragepy-git-b6e16f8a3bc9fc07142e1da8f313f06a31757826.tar.gz |
build: build a 3.11 Mac arm64 kit
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/kit.yml | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/.github/workflows/kit.yml b/.github/workflows/kit.yml index f3c15670..f835786e 100644 --- a/.github/workflows/kit.yml +++ b/.github/workflows/kit.yml @@ -77,11 +77,12 @@ jobs: # } # # PYVERSIONS. Available versions: # # https://github.com/actions/python-versions/blob/main/versions-manifest.json + # # Include prereleases if they are at rc stage. # pys = ["cp37", "cp38", "cp39", "cp310", "cp311"] # # # Some OS/arch combinations need overrides for the Python versions: # os_arch_pys = { - # ("macos", "arm64"): ["cp38", "cp39", "cp310"], + # ("macos", "arm64"): ["cp38", "cp39", "cp310", "cp311"], # } # # #----- ^^^ ---------------------- ^^^ ----- @@ -115,6 +116,7 @@ jobs: - {"os": "macos", "py": "cp38", "arch": "arm64"} - {"os": "macos", "py": "cp39", "arch": "arm64"} - {"os": "macos", "py": "cp310", "arch": "arm64"} + - {"os": "macos", "py": "cp311", "arch": "arm64"} - {"os": "macos", "py": "cp37", "arch": "x86_64"} - {"os": "macos", "py": "cp38", "arch": "x86_64"} - {"os": "macos", "py": "cp39", "arch": "x86_64"} @@ -130,7 +132,7 @@ jobs: - {"os": "windows", "py": "cp39", "arch": "AMD64"} - {"os": "windows", "py": "cp310", "arch": "AMD64"} - {"os": "windows", "py": "cp311", "arch": "AMD64"} - # [[[end]]] (checksum: 428e5138336453464dde968cc3149f4f) + # [[[end]]] (checksum: ded8a9f214bf59776562d91ae6828863) fail-fast: false steps: |