Closed TransparentLC closed 5 months ago
Why hasn't this been merged yet😭
@mohamed-khettab
My temporary fix:
import notifypy
import functools
notifypy.Notify._selected_notification_system = functools.partial(notifypy.Notify._selected_notification_system, override_windows_version_detection=True)
Reference:
@TransparentLC Will give it a try later. Thank you ☺️
@TransparentLC Thanks for the temporary fix, I tested it and it is working again in my environment !
@ms7m Would you please merge this PR to fix the issue with UnsupportedPlatform
exception on Windows 11 when using Python 3.12
I'll merge + publish in the latest changes this weekend.
I'll be near my computer with my PyPi keys then.
v0.3.43
has been published containing this fix!
It seems that
platform.release()
will return'11'
on Windows 11 instead of'10'
in Python 3.12, which leads to an unexpectedUnsupportedPlatform
exception. I created this PR to fix the detection code.