Skip to content

Commit

Permalink
Increase minimum pywebview on Windows to fix PyInstaller issue
Browse files Browse the repository at this point in the history
Fixes #134
  • Loading branch information
simonrob committed Feb 23, 2023
1 parent a6e7352 commit ace73f8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ timeago # for displaying the last authenticated activity hint
# force pystray version with dummy GUI fix for headless deployments (https://github.com/moses-palmer/pystray/issues/118)
pystray>=0.19.4

# force pywebview 3.5+ on Windows to fix authentication window crash bug (https://github.com/r0x0r/pywebview/issues/720)
# force pywebview 4.0.2+ on Windows to fix PyInstaller/pythonw issue (https://github.com/r0x0r/pywebview/issues/1044)
pywebview; sys_platform != 'win32' # (specify platform to avoid double requirement error with older pip versions)
pywebview>=3.5; sys_platform == 'win32'
pywebview>=4.0.2; sys_platform == 'win32'

# macOS: improve menu bar interaction, provide native notifications and handle system events
pyobjc-framework-Cocoa; sys_platform == 'darwin'
Expand Down

0 comments on commit ace73f8

Please sign in to comment.