Skip to content

Commit

Permalink
Use PySide6 for non-windows + python >= 3.12 (#645)
Browse files Browse the repository at this point in the history
PySide2 is dead and won't support Python 3.12 or newer.
  • Loading branch information
luk1337 authored Nov 24, 2023
1 parent 7850c2a commit fc0d2c5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions requirements_gui.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
pyside2>=5.11.0; sys_platform != 'darwin'
pyside6; sys_platform == 'darwin'
pyside2>=5.11.0; sys_platform != 'darwin' and (sys_platform == 'win32' or python_version < '3.12')
pyside6; sys_platform == 'darwin' or (sys_platform != 'win32' and python_version >= '3.12')
requests>=2.20.0; sys_platform == 'darwin'

0 comments on commit fc0d2c5

Please sign in to comment.