Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions ipykernel/eventloops.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@
def _use_appnope():
"""Should we use appnope for dealing with OS X app nap?

Checks if we are on OS X 10.9 or greater.
Checks if we are on OS X 10.9 or greater and not on Apple Silicon.
"""
return sys.platform == 'darwin' and V(platform.mac_ver()[0]) >= V('10.9')
return sys.platform == 'darwin' and V(platform.mac_ver()[0]) >= V('10.9') and platform.mac_ver()[2] != 'arm64'


def _notify_stream_qt(kernel, stream):
Expand Down