Skip to content

Commit 521ef62

Browse files
committed
Fix condition that checks for Python 3.8
1 parent e6b5105 commit 521ef62

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

vpython/no_notebook.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -249,7 +249,7 @@ def onClose(self, wasClean, code, reason):
249249
raise RuntimeError('The pyqt browser cannot be used on Windows. '
250250
'Please use the default browser instead by '
251251
'removing set_browser("pyqt") from your code.')
252-
elif sys.version_info.major == 3 and sys.version_info.minor >= 7:
252+
elif sys.version_info.major == 3 and sys.version_info.minor >= 8:
253253
raise RuntimeError('The pyqt browser cannot be used on Python 3.8. '
254254
'Please use the default browser instead by '
255255
'removing set_browser("pyqt") from your code.')

0 commit comments

Comments
 (0)