Skip to content

Commit 4729100

Browse files
[3.12] gh-105091: stable_abi.py: Remove "Unixy" check from --all on other platforms (GH-105092) (GH-105133)
gh-105091: stable_abi.py: Remove "Unixy" check from --all on other platforms (GH-105092) (cherry picked from commit 0656d23) Co-authored-by: Petr Viktorin <[email protected]>
1 parent e3fcd9e commit 4729100

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Tools/build/stable_abi.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -684,7 +684,8 @@ def main():
684684

685685
if args.all:
686686
run_all_generators = True
687-
args.unixy_check = True
687+
if UNIXY:
688+
args.unixy_check = True
688689

689690
try:
690691
file = args.file.open('rb')

0 commit comments

Comments
 (0)