Skip to content

Commit

Permalink
Merge pull request #281 from dalthviz/fixes_issue_280
Browse files Browse the repository at this point in the history
PR: Catch `PythonQtError` when trying to do alias for `QtDataVisualization` and dev version correction
  • Loading branch information
dalthviz committed Nov 17, 2021
2 parents da3bd76 + 3f19aa3 commit 7ba1e0e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion qtpy/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -235,5 +235,5 @@ class PythonQtWarning(Warning):
# QtDataVisualization backward compatibility (QtDataVisualization vs. QtDatavisualization)
# Only available for Qt5 bindings > 5.9 on Windows
from . import QtDataVisualization as QtDatavisualization
except ImportError:
except (ImportError, PythonQtError):
pass
2 changes: 1 addition & 1 deletion qtpy/_version.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
version_info = (2, 0, 0, 'dev0')
version_info = (1, 12, 0, 'dev0')
__version__ = '.'.join(map(str, version_info))

0 comments on commit 7ba1e0e

Please sign in to comment.