- Add patch so the renaming of QtDataVisualization doesn't cause a problem on applications using the old name (gh#spyder-ide/qtpy#228): * 0001-Add-QtDatavisualization-alias-to-QtDataVisualization.patch OBS-URL: https://build.opensuse.org/request/show/865308 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-QtPy?expand=0&rev=28
23 lines
688 B
Diff
23 lines
688 B
Diff
From 1e5d4ca1b1c182ef261b0f6832e5be87d0d813de Mon Sep 17 00:00:00 2001
|
|
From: Antonio Larrosa <antonio.larrosa@gmail.com>
|
|
Date: Thu, 21 Jan 2021 10:16:50 +0100
|
|
Subject: [PATCH] Add QtDatavisualization alias to QtDataVisualization
|
|
|
|
There might be applications using the wrong name. This
|
|
commit introduces an alias so they keep working as usual.
|
|
---
|
|
qtpy/QtDatavisualization.py | 1 +
|
|
1 file changed, 1 insertion(+)
|
|
create mode 100644 qtpy/QtDatavisualization.py
|
|
|
|
diff --git a/qtpy/QtDatavisualization.py b/qtpy/QtDatavisualization.py
|
|
new file mode 100644
|
|
index 0000000..cd0cb4d
|
|
--- /dev/null
|
|
+++ b/qtpy/QtDatavisualization.py
|
|
@@ -0,0 +1 @@
|
|
+from .QtDataVisualization import *
|
|
--
|
|
2.30.0
|
|
|