diff --git a/notifypy/notify.py b/notifypy/notify.py index 09c798a..a196261 100644 --- a/notifypy/notify.py +++ b/notifypy/notify.py @@ -110,7 +110,7 @@ def _selected_notification_system( return MacOSNotifier elif selected_platform == "Windows": - if platform.release() == "10": + if platform.release() in {"10", "11"}: from .os_notifiers.windows import WindowsNotifier return WindowsNotifier