Hello community,
here is the log from the commit of package python-qtconsole for
openSUSE:Factory checked in at 2020-04-27 23:31:10
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-qtconsole (Old)
and /work/SRC/openSUSE:Factory/.python-qtconsole.new.2738 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-qtconsole"
Mon Apr 27 23:31:10 2020 rev:8 rq:795888 version:4.7.3
Changes:
--------
--- /work/SRC/openSUSE:Factory/python-qtconsole/python-qtconsole.changes
2020-04-05 20:55:31.625312790 +0200
+++
/work/SRC/openSUSE:Factory/.python-qtconsole.new.2738/python-qtconsole.changes
2020-04-27 23:31:26.254710381 +0200
@@ -1,0 +2,6 @@
+Sat Apr 18 21:29:25 UTC 2020 - Arun Persaud <[email protected]>
+
+- update to version 4.7.3:
+ * Fix all misuses of QtGui.
+
+-------------------------------------------------------------------
Old:
----
qtconsole-4.7.2.tar.gz
New:
----
qtconsole-4.7.3.tar.gz
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ python-qtconsole.spec ++++++
--- /var/tmp/diff_new_pack.yTIdYb/_old 2020-04-27 23:31:27.114712060 +0200
+++ /var/tmp/diff_new_pack.yTIdYb/_new 2020-04-27 23:31:27.114712060 +0200
@@ -19,7 +19,7 @@
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
%define skip_python2 1
Name: python-qtconsole
-Version: 4.7.2
+Version: 4.7.3
Release: 0
Summary: Jupyter Qt console
License: BSD-3-Clause
++++++ qtconsole-4.7.2.tar.gz -> qtconsole-4.7.3.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/qtconsole-4.7.2/PKG-INFO new/qtconsole-4.7.3/PKG-INFO
--- old/qtconsole-4.7.2/PKG-INFO 2020-03-25 17:37:20.000000000 +0100
+++ new/qtconsole-4.7.3/PKG-INFO 2020-04-16 17:24:40.000000000 +0200
@@ -1,6 +1,6 @@
Metadata-Version: 2.1
Name: qtconsole
-Version: 4.7.2
+Version: 4.7.3
Summary: Jupyter Qt console
Home-page: http://jupyter.org
Author: Jupyter Development Team
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/qtconsole-4.7.2/docs/source/changelog.rst
new/qtconsole-4.7.3/docs/source/changelog.rst
--- old/qtconsole-4.7.2/docs/source/changelog.rst 2020-03-25
17:24:12.000000000 +0100
+++ new/qtconsole-4.7.3/docs/source/changelog.rst 2020-04-16
17:20:45.000000000 +0200
@@ -8,6 +8,15 @@
4.7
~~~
+.. _4.7.3:
+
+4.7.3
+-----
+
+`4.7.3 on GitHub <https://github.com/jupyter/qtconsole/milestones/4.7.3>`__
+
+* Fix all misuses of QtGui.
+
.. _4.7.2:
4.7.2
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/qtconsole-4.7.2/qtconsole/_version.py
new/qtconsole-4.7.3/qtconsole/_version.py
--- old/qtconsole-4.7.2/qtconsole/_version.py 2020-03-25 17:27:40.000000000
+0100
+++ new/qtconsole-4.7.3/qtconsole/_version.py 2020-04-16 17:23:35.000000000
+0200
@@ -1,2 +1,2 @@
-version_info = (4, 7, 2)
+version_info = (4, 7, 3)
__version__ = '.'.join(map(str, version_info))
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/qtconsole-4.7.2/qtconsole/mainwindow.py
new/qtconsole-4.7.3/qtconsole/mainwindow.py
--- old/qtconsole-4.7.2/qtconsole/mainwindow.py 2020-01-25 17:50:31.000000000
+0100
+++ new/qtconsole-4.7.3/qtconsole/mainwindow.py 2020-04-16 17:18:58.000000000
+0200
@@ -116,10 +116,10 @@
def set_window_title(self):
"""Set the title of the console window"""
old_title = self.windowTitle()
- title, ok = QtGui.QInputDialog.getText(self,
- "Rename Window",
- "New title:",
- text=old_title)
+ title, ok = QtWidgets.QInputDialog.getText(self,
+ "Rename Window",
+ "New title:",
+ text=old_title)
if ok:
self.setWindowTitle(title)
@@ -151,10 +151,10 @@
def set_tab_title(self):
"""Set the title of the current tab"""
old_title = self.tab_widget.tabText(self.tab_widget.currentIndex())
- title, ok = QtGui.QInputDialog.getText(self,
- "Rename Tab",
- "New title:",
- text=old_title)
+ title, ok = QtWidgets.QInputDialog.getText(self,
+ "Rename Tab",
+ "New title:",
+ text=old_title)
if ok:
self.tab_widget.setTabText(self.tab_widget.currentIndex(), title)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/qtconsole-4.7.2/qtconsole/rich_text.py
new/qtconsole-4.7.3/qtconsole/rich_text.py
--- old/qtconsole-4.7.2/qtconsole/rich_text.py 2020-01-25 17:50:31.000000000
+0100
+++ new/qtconsole-4.7.3/qtconsole/rich_text.py 2020-04-16 17:18:58.000000000
+0200
@@ -7,7 +7,7 @@
import os
import re
-from qtpy import QtGui, QtWidgets
+from qtpy import QtWidgets
from ipython_genutils import py3compat
@@ -75,13 +75,13 @@
# If there are PNGs, decide how to export them.
inline = self.inline_png
if inline is None and IMG_RE.search(html):
- dialog = QtGui.QDialog(parent)
+ dialog = QtWidgets.QDialog(parent)
dialog.setWindowTitle('Save as...')
- layout = QtGui.QVBoxLayout(dialog)
+ layout = QtWidgets.QVBoxLayout(dialog)
msg = "Exporting HTML with PNGs"
info = "Would you like inline PNGs (single large html " \
"file) or external image files?"
- checkbox = QtGui.QCheckBox("&Don't ask again")
+ checkbox = QtWidgets.QCheckBox("&Don't ask again")
checkbox.setShortcut('D')
ib = QtWidgets.QPushButton("&Inline")
ib.setShortcut('I')
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/qtconsole-4.7.2/qtconsole.egg-info/PKG-INFO
new/qtconsole-4.7.3/qtconsole.egg-info/PKG-INFO
--- old/qtconsole-4.7.2/qtconsole.egg-info/PKG-INFO 2020-03-25
17:37:20.000000000 +0100
+++ new/qtconsole-4.7.3/qtconsole.egg-info/PKG-INFO 2020-04-16
17:24:39.000000000 +0200
@@ -1,6 +1,6 @@
Metadata-Version: 2.1
Name: qtconsole
-Version: 4.7.2
+Version: 4.7.3
Summary: Jupyter Qt console
Home-page: http://jupyter.org
Author: Jupyter Development Team