Cleanup previous PR

This commit is contained in:
Kovid Goyal 2026-03-15 08:38:59 +05:30
parent d244a697bf
commit 30756bb819
No known key found for this signature in database
GPG key ID: 06BC317B515ACE7C
2 changed files with 5 additions and 2 deletions

View file

@ -184,6 +184,8 @@ Detailed list of changes
- Linux: Fix regression that broke drag and drop from GTK applications (:iss:`9656`)
- macOS: Fix using Fn key for start dictation not working (:iss:`9661`)
0.46.0 [2026-03-11]
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

View file

@ -4,6 +4,7 @@
import json
import os
import shutil
import stat
import subprocess
import sys
@ -40,8 +41,8 @@ class TestBuild(BaseTest):
def test_macos_dictation_forwarding(self) -> None:
from kitty.constants import glfw_path, is_macos
if not is_macos:
self.skipTest('Dictation smoke test is macOS only')
if not is_macos or not shutil.which('clang'):
self.skipTest('Dictation smoke test is macOS only and requires clang')
cocoa_module = glfw_path('cocoa')
probe = textwrap.dedent('''\
#import <AppKit/AppKit.h>