Use PySide6 for non-windows + python >= 3.12 (#645)

PySide2 is dead and won't support Python 3.12 or newer.
This commit is contained in:
luk1337 2023-11-24 01:27:36 +01:00 committed by GitHub
parent 7850c2a00d
commit fc0d2c5268
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -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'