Skip to content

Commit 6a95df1

Browse files
committed
Restore depot-macos-latest usage for macOS
1 parent d0521dd commit 6a95df1

File tree

2 files changed

+3
-7
lines changed

2 files changed

+3
-7
lines changed

.github/workflows/apple.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ env:
1414

1515
jobs:
1616
pythonbuild:
17-
runs-on: 'macos-13'
17+
runs-on: depot-macos-latest
1818
steps:
1919
- uses: actions/checkout@v4
2020

@@ -71,7 +71,7 @@ jobs:
7171
strategy:
7272
matrix: ${{ fromJson(needs.generate-matrix.outputs.matrix) }}
7373
fail-fast: false
74-
runs-on: macos-14
74+
runs-on: depot-macos-latest
7575
name: ${{ matrix.target_triple }} / ${{ matrix.python }} / ${{ matrix.build_options }}
7676
steps:
7777
- uses: actions/checkout@v4

src/validation.rs

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -603,6 +603,7 @@ const GLOBAL_EXTENSIONS: &[&str] = &[
603603
"_ast",
604604
"_asyncio",
605605
"_bisect",
606+
"_blake2",
606607
"_bz2",
607608
"_codecs",
608609
"_codecs_cn",
@@ -688,7 +689,6 @@ const GLOBAL_EXTENSIONS: &[&str] = &[
688689

689690
const GLOBAL_EXTENSIONS_PYTHON_3_9: &[&str] = &[
690691
"audioop",
691-
"_blake2",
692692
"_peg_parser",
693693
"_sha256",
694694
"_sha512",
@@ -699,7 +699,6 @@ const GLOBAL_EXTENSIONS_PYTHON_3_9: &[&str] = &[
699699

700700
const GLOBAL_EXTENSIONS_PYTHON_3_10: &[&str] = &[
701701
"audioop",
702-
"_blake2",
703702
"_sha256",
704703
"_sha512",
705704
"_xxsubinterpreters",
@@ -708,7 +707,6 @@ const GLOBAL_EXTENSIONS_PYTHON_3_10: &[&str] = &[
708707

709708
const GLOBAL_EXTENSIONS_PYTHON_3_11: &[&str] = &[
710709
"audioop",
711-
"_blake2",
712710
"_sha256",
713711
"_sha512",
714712
"_tokenize",
@@ -719,7 +717,6 @@ const GLOBAL_EXTENSIONS_PYTHON_3_11: &[&str] = &[
719717

720718
const GLOBAL_EXTENSIONS_PYTHON_3_12: &[&str] = &[
721719
"audioop",
722-
"_blake2",
723720
"_sha2",
724721
"_tokenize",
725722
"_typing",
@@ -729,7 +726,6 @@ const GLOBAL_EXTENSIONS_PYTHON_3_12: &[&str] = &[
729726
];
730727

731728
const GLOBAL_EXTENSIONS_PYTHON_3_13: &[&str] = &[
732-
"_blake2",
733729
"_interpchannels",
734730
"_interpqueues",
735731
"_interpreters",

0 commit comments

Comments
 (0)