Skip to content

Commit f71b8b5

Browse files
committed
only really need to avoid PySide2 == 5.15.0
1 parent 9db3302 commit f71b8b5

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

setup.py

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,13 @@
1717
install_requires=["greenlet", "pytest>=2.3", "decorator"],
1818
extras_require={
1919
"dev": ["pre-commit", "black"],
20-
"pyside2": ["pyside2>=5.15.1", "qt5reactor>=0.6.2"],
20+
"pyside2": [
21+
# != 5.15.0 for:
22+
# https://bugreports.qt.io/browse/PYSIDE-1317
23+
# https://github.com/pytest-dev/pytest-twisted/pull/107#issuecomment-643679361
24+
"pyside2 != 5.15.0",
25+
"qt5reactor>=0.6.2",
26+
],
2127
"pyqt5": ["pyqt5", "qt5reactor>=0.6.2"],
2228
},
2329
classifiers=[

0 commit comments

Comments
 (0)