commit python-qtconsole for openSUSE:Factory

2020-09-17 Thread root
Hello community,

here is the log from the commit of package python-qtconsole for 
openSUSE:Factory checked in at 2020-09-17 14:49:31

Comparing /work/SRC/openSUSE:Factory/python-qtconsole (Old)
 and  /work/SRC/openSUSE:Factory/.python-qtconsole.new.4249 (New)


Package is "python-qtconsole"

Thu Sep 17 14:49:31 2020 rev:12 rq:834970 version:4.7.7

Changes:

--- /work/SRC/openSUSE:Factory/python-qtconsole/python-qtconsole.changes
2020-08-29 20:44:55.669529739 +0200
+++ 
/work/SRC/openSUSE:Factory/.python-qtconsole.new.4249/python-qtconsole.changes  
2020-09-17 14:52:06.083982611 +0200
@@ -1,0 +2,11 @@
+Wed Sep 16 11:27:20 UTC 2020 - Benjamin Greiner 
+
+- skip two tests: gh#jupyter/qtconsole#443 
+
+---
+Sat Sep  5 16:23:19 UTC 2020 - Arun Persaud 
+
+- update to version 4.7.7:
+  * Change font width calculation to use horizontalAdvance
+
+---

Old:

  qtconsole-4.7.6.tar.gz

New:

  qtconsole-4.7.7.tar.gz



Other differences:
--
++ python-qtconsole.spec ++
--- /var/tmp/diff_new_pack.xUt6Ix/_old  2020-09-17 14:52:11.015987319 +0200
+++ /var/tmp/diff_new_pack.xUt6Ix/_new  2020-09-17 14:52:11.019987323 +0200
@@ -19,7 +19,7 @@
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 %define skip_python2 1
 Name:   python-qtconsole
-Version:4.7.6
+Version:4.7.7
 Release:0
 Summary:Jupyter Qt console
 License:BSD-3-Clause
@@ -114,7 +114,8 @@
 
 %check
 export QT_QPA_PLATFORM="offscreen"
-%pytest
+# test skips: https://github.com/jupyter/qtconsole/issues/443
+%pytest -k "not (test_00 and (test_scroll or test_debug))"
 
 %post -n jupyter-qtconsole
 %python_install_alternative jupyter-qtconsole

++ qtconsole-4.7.6.tar.gz -> qtconsole-4.7.7.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/qtconsole-4.7.6/PKG-INFO new/qtconsole-4.7.7/PKG-INFO
--- old/qtconsole-4.7.6/PKG-INFO2020-08-17 19:23:57.0 +0200
+++ new/qtconsole-4.7.7/PKG-INFO2020-09-03 06:02:46.0 +0200
@@ -1,6 +1,6 @@
 Metadata-Version: 2.1
 Name: qtconsole
-Version: 4.7.6
+Version: 4.7.7
 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.6/docs/source/changelog.rst 
new/qtconsole-4.7.7/docs/source/changelog.rst
--- old/qtconsole-4.7.6/docs/source/changelog.rst   2020-08-17 
19:21:44.0 +0200
+++ new/qtconsole-4.7.7/docs/source/changelog.rst   2020-09-03 
05:55:38.0 +0200
@@ -8,6 +8,15 @@
 4.7
 ~~~
 
+.. _4.7.7:
+
+4.7.7
+-
+
+`4.7.7 on GitHub `__
+
+* Change font width calculation to use horizontalAdvance
+
 .. _4.7.6:
 
 4.7.6
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/qtconsole-4.7.6/qtconsole/_version.py 
new/qtconsole-4.7.7/qtconsole/_version.py
--- old/qtconsole-4.7.6/qtconsole/_version.py   2020-08-17 19:23:05.0 
+0200
+++ new/qtconsole-4.7.7/qtconsole/_version.py   2020-09-03 06:01:53.0 
+0200
@@ -1,2 +1,2 @@
-version_info = (4, 7, 6)
+version_info = (4, 7, 7)
 __version__ = '.'.join(map(str, version_info))
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/qtconsole-4.7.6/qtconsole/completion_html.py 
new/qtconsole-4.7.7/qtconsole/completion_html.py
--- old/qtconsole-4.7.6/qtconsole/completion_html.py2020-08-17 
19:19:15.0 +0200
+++ new/qtconsole-4.7.7/qtconsole/completion_html.py2020-09-03 
05:53:18.0 +0200
@@ -309,7 +309,7 @@
 self._consecutive_tab = 1
 # Calculate the number of characters available.
 width = self._text_edit.document().textWidth()
-char_width = 
QtGui.QFontMetrics(self._console_widget.font).boundingRect(' ').width()
+char_width = self._console_widget._get_font_width()
 displaywidth = int(max(10, (width / char_width) - 1))
 items_m, ci = text.compute_item_matrix(items, empty=' ',
displaywidth=displaywidth)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/qtconsole-4.7.6/qtconsole/console_widget.py 
new/qtconsole-4.7.7/qtconsole/console_widget.py
--- old/qtconsole-4.7.6/qtconsole/console_widget.py 2020-08-17 
19:19:15.0 +0200
+++ new/qtconsole-4.7.7/qtconsole/console_widget.py 2020-09-03 
05:53:18.0 +0200
@@ -488,7 +488,7 @@
 # a fudge fac

commit python-qtconsole for openSUSE:Factory

2020-08-29 Thread root
Hello community,

here is the log from the commit of package python-qtconsole for 
openSUSE:Factory checked in at 2020-08-29 20:44:40

Comparing /work/SRC/openSUSE:Factory/python-qtconsole (Old)
 and  /work/SRC/openSUSE:Factory/.python-qtconsole.new.3399 (New)


Package is "python-qtconsole"

Sat Aug 29 20:44:40 2020 rev:11 rq:830424 version:4.7.6

Changes:

--- /work/SRC/openSUSE:Factory/python-qtconsole/python-qtconsole.changes
2020-07-01 14:27:26.562906704 +0200
+++ 
/work/SRC/openSUSE:Factory/.python-qtconsole.new.3399/python-qtconsole.changes  
2020-08-29 20:44:55.669529739 +0200
@@ -1,0 +2,9 @@
+Fri Aug 28 16:30:17 UTC 2020 - Benjamin Greiner 
+
+- Update to 4.7.6
+  * Replace qApp with QApplication.instance().
+  * Fix QFontMetrics.width deprecation. 
+- use alternatives for entry point
+- SIP is not used anymore
+
+---

Old:

  qtconsole-4.7.5.tar.gz

New:

  qtconsole-4.7.6.tar.gz



Other differences:
--
++ python-qtconsole.spec ++
--- /var/tmp/diff_new_pack.i0ODQh/_old  2020-08-29 20:44:56.237529977 +0200
+++ /var/tmp/diff_new_pack.i0ODQh/_new  2020-08-29 20:44:56.241529978 +0200
@@ -19,7 +19,7 @@
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 %define skip_python2 1
 Name:   python-qtconsole
-Version:4.7.5
+Version:4.7.6
 Release:0
 Summary:Jupyter Qt console
 License:BSD-3-Clause
@@ -43,7 +43,6 @@
 Requires:   python-ipython_genutils
 Requires:   python-jupyter-client >= 4.1
 Requires:   python-jupyter-core
-Requires:   python-sip
 Requires:   python-traitlets
 Provides:   python-jupyter_qtconsole = %{version}
 Obsoletes:  python-jupyter_qtconsole < %{version}
@@ -55,12 +54,9 @@
 BuildRequires:  %{python_module ipykernel >= 4.1}
 BuildRequires:  %{python_module ipython_genutils}
 BuildRequires:  %{python_module jupyter-client >= 4.1}
-BuildRequires:  %{python_module nose}
-BuildRequires:  %{python_module pexpect}
 BuildRequires:  %{python_module pytest-qt}
 BuildRequires:  %{python_module pytest}
 BuildRequires:  %{python_module qt5}
-BuildRequires:  %{python_module sip}
 BuildRequires:  %{python_module traitlets}
 # /SECTION
 %python_subpackages
@@ -114,10 +110,18 @@
 %suse_update_desktop_file -i -r jupyter-qtconsole "System;TerminalEmulator;"
 popd
 
+%python_clone -a %{buildroot}%{_bindir}/jupyter-qtconsole
+
 %check
 export QT_QPA_PLATFORM="offscreen"
 %pytest
 
+%post -n jupyter-qtconsole
+%python_install_alternative jupyter-qtconsole
+
+%postun -n jupyter-qtconsole
+%python_uninstall_alternative jupyter-qtconsole
+
 %files %{python_files}
 %license LICENSE
 %{python_sitelib}/qtconsole-%{version}-py*.egg-info
@@ -125,7 +129,7 @@
 
 %files -n jupyter-qtconsole
 %license LICENSE
-%{_bindir}/jupyter-qtconsole
+%python_alternative %{_bindir}/jupyter-qtconsole
 %{_datadir}/applications/jupyter-qtconsole.desktop
 %{_datadir}/icons/hicolor/scalable/apps/JupyterQtConsole.svg
 

++ qtconsole-4.7.5.tar.gz -> qtconsole-4.7.6.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/qtconsole-4.7.5/PKG-INFO new/qtconsole-4.7.6/PKG-INFO
--- old/qtconsole-4.7.5/PKG-INFO2020-06-22 18:43:00.0 +0200
+++ new/qtconsole-4.7.6/PKG-INFO2020-08-17 19:23:57.0 +0200
@@ -1,6 +1,6 @@
 Metadata-Version: 2.1
 Name: qtconsole
-Version: 4.7.5
+Version: 4.7.6
 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.5/docs/source/changelog.rst 
new/qtconsole-4.7.6/docs/source/changelog.rst
--- old/qtconsole-4.7.5/docs/source/changelog.rst   2020-06-22 
18:39:16.0 +0200
+++ new/qtconsole-4.7.6/docs/source/changelog.rst   2020-08-17 
19:21:44.0 +0200
@@ -8,6 +8,16 @@
 4.7
 ~~~
 
+.. _4.7.6:
+
+4.7.6
+-
+
+`4.7.6 on GitHub `__
+
+* Replace qApp with QApplication.instance().
+* Fix QFontMetrics.width deprecation.
+
 .. _4.7.5:
 
 4.7.5
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/qtconsole-4.7.5/qtconsole/_version.py 
new/qtconsole-4.7.6/qtconsole/_version.py
--- old/qtconsole-4.7.5/qtconsole/_version.py   2020-06-22 18:40:40.0 
+0200
+++ new/qtconsole-4.7.6/qtconsole/_version.py   2020-08-17 19:23:05.0 
+0200
@@ -1,2 +1,2 @@
-version_info = (4, 7, 5)
+version_info = (4, 7, 6)
 __version__ = '.'.join(map(str, version_info))
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/q

commit python-qtconsole for openSUSE:Factory

2020-07-01 Thread root
Hello community,

here is the log from the commit of package python-qtconsole for 
openSUSE:Factory checked in at 2020-07-01 14:27:18

Comparing /work/SRC/openSUSE:Factory/python-qtconsole (Old)
 and  /work/SRC/openSUSE:Factory/.python-qtconsole.new.3060 (New)


Package is "python-qtconsole"

Wed Jul  1 14:27:18 2020 rev:10 rq:818057 version:4.7.5

Changes:

--- /work/SRC/openSUSE:Factory/python-qtconsole/python-qtconsole.changes
2020-05-26 17:22:00.660321875 +0200
+++ 
/work/SRC/openSUSE:Factory/.python-qtconsole.new.3060/python-qtconsole.changes  
2020-07-01 14:27:26.562906704 +0200
@@ -1,0 +2,6 @@
+Wed Jul  1 08:54:06 UTC 2020 - Marketa Calabkova 
+
+- Update to 4.7.5
+  * Print input if there is no prompt. 
+
+---

Old:

  qtconsole-4.7.4.tar.gz

New:

  qtconsole-4.7.5.tar.gz



Other differences:
--
++ python-qtconsole.spec ++
--- /var/tmp/diff_new_pack.IUNMz7/_old  2020-07-01 14:27:27.642910053 +0200
+++ /var/tmp/diff_new_pack.IUNMz7/_new  2020-07-01 14:27:27.642910053 +0200
@@ -19,7 +19,7 @@
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 %define skip_python2 1
 Name:   python-qtconsole
-Version:4.7.4
+Version:4.7.5
 Release:0
 Summary:Jupyter Qt console
 License:BSD-3-Clause

++ qtconsole-4.7.4.tar.gz -> qtconsole-4.7.5.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/qtconsole-4.7.4/PKG-INFO new/qtconsole-4.7.5/PKG-INFO
--- old/qtconsole-4.7.4/PKG-INFO2020-05-13 17:03:19.0 +0200
+++ new/qtconsole-4.7.5/PKG-INFO2020-06-22 18:43:00.0 +0200
@@ -1,6 +1,6 @@
 Metadata-Version: 2.1
 Name: qtconsole
-Version: 4.7.4
+Version: 4.7.5
 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.4/docs/source/changelog.rst 
new/qtconsole-4.7.5/docs/source/changelog.rst
--- old/qtconsole-4.7.4/docs/source/changelog.rst   2020-05-13 
16:58:39.0 +0200
+++ new/qtconsole-4.7.5/docs/source/changelog.rst   2020-06-22 
18:39:16.0 +0200
@@ -8,6 +8,17 @@
 4.7
 ~~~
 
+.. _4.7.5:
+
+4.7.5
+-
+
+`4.7.5 on GitHub `__
+
+* Print input if there is no prompt.
+
+.. _4.7.4:
+
 4.7.4
 -
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/qtconsole-4.7.4/qtconsole/_version.py 
new/qtconsole-4.7.5/qtconsole/_version.py
--- old/qtconsole-4.7.4/qtconsole/_version.py   2020-05-13 17:01:51.0 
+0200
+++ new/qtconsole-4.7.5/qtconsole/_version.py   2020-06-22 18:40:40.0 
+0200
@@ -1,2 +1,2 @@
-version_info = (4, 7, 4)
+version_info = (4, 7, 5)
 __version__ = '.'.join(map(str, version_info))
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/qtconsole-4.7.4/qtconsole/jupyter_widget.py 
new/qtconsole-4.7.5/qtconsole/jupyter_widget.py
--- old/qtconsole-4.7.4/qtconsole/jupyter_widget.py 2020-03-25 
17:22:00.0 +0100
+++ new/qtconsole-4.7.5/qtconsole/jupyter_widget.py 2020-06-22 
18:28:02.0 +0200
@@ -226,11 +226,11 @@
 last_cell = cell
 self._set_history(items)
 
-def _insert_other_input(self, cursor, content):
+def _insert_other_input(self, cursor, content, remote=True):
 """Insert function for input from other frontends"""
 n = content.get('execution_count', 0)
-prompt = self._make_in_prompt(n, remote=True)
-cont_prompt = self._make_continuation_prompt(self._prompt, remote=True)
+prompt = self._make_in_prompt(n, remote=remote)
+cont_prompt = self._make_continuation_prompt(self._prompt, 
remote=remote)
 cursor.insertText('\n')
 for i, line in enumerate(content['code'].strip().split('\n')):
 if i == 0:
@@ -246,7 +246,12 @@
 """Handle an execute_input message"""
 self.log.debug("execute_input: %s", msg.get('content', ''))
 if self.include_output(msg):
-self._append_custom(self._insert_other_input, msg['content'], 
before_prompt=True)
+self._append_custom(
+self._insert_other_input, msg['content'], before_prompt=True)
+elif not self._prompt:
+self._append_custom(
+self._insert_other_input, msg['content'],
+before_prompt=True, remote=False)
 
 def _handle_execute_result(self, msg):
 """Handle an execute_result message"""
@@ -385,6 +390,9 @@
 
 def _update_prom

commit python-qtconsole for openSUSE:Factory

2020-05-26 Thread root
Hello community,

here is the log from the commit of package python-qtconsole for 
openSUSE:Factory checked in at 2020-05-26 17:21:48

Comparing /work/SRC/openSUSE:Factory/python-qtconsole (Old)
 and  /work/SRC/openSUSE:Factory/.python-qtconsole.new.2738 (New)


Package is "python-qtconsole"

Tue May 26 17:21:48 2020 rev:9 rq:808510 version:4.7.4

Changes:

--- /work/SRC/openSUSE:Factory/python-qtconsole/python-qtconsole.changes
2020-04-27 23:31:26.254710381 +0200
+++ 
/work/SRC/openSUSE:Factory/.python-qtconsole.new.2738/python-qtconsole.changes  
2020-05-26 17:22:00.660321875 +0200
@@ -1,0 +2,7 @@
+Sat May 23 20:35:57 UTC 2020 - Arun Persaud 
+
+- update to version 4.7.4:
+  * Fix completion widget text for paths and files.
+  * Make Qtconsole work on Python 3.8 and Windows.
+
+---

Old:

  qtconsole-4.7.3.tar.gz

New:

  qtconsole-4.7.4.tar.gz



Other differences:
--
++ python-qtconsole.spec ++
--- /var/tmp/diff_new_pack.BjRaFR/_old  2020-05-26 17:22:02.332325469 +0200
+++ /var/tmp/diff_new_pack.BjRaFR/_new  2020-05-26 17:22:02.332325469 +0200
@@ -19,7 +19,7 @@
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 %define skip_python2 1
 Name:   python-qtconsole
-Version:4.7.3
+Version:4.7.4
 Release:0
 Summary:Jupyter Qt console
 License:BSD-3-Clause

++ qtconsole-4.7.3.tar.gz -> qtconsole-4.7.4.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/qtconsole-4.7.3/PKG-INFO new/qtconsole-4.7.4/PKG-INFO
--- old/qtconsole-4.7.3/PKG-INFO2020-04-16 17:24:40.0 +0200
+++ new/qtconsole-4.7.4/PKG-INFO2020-05-13 17:03:19.0 +0200
@@ -1,6 +1,6 @@
 Metadata-Version: 2.1
 Name: qtconsole
-Version: 4.7.3
+Version: 4.7.4
 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.3/docs/source/changelog.rst 
new/qtconsole-4.7.4/docs/source/changelog.rst
--- old/qtconsole-4.7.3/docs/source/changelog.rst   2020-04-16 
17:20:45.0 +0200
+++ new/qtconsole-4.7.4/docs/source/changelog.rst   2020-05-13 
16:58:39.0 +0200
@@ -8,6 +8,14 @@
 4.7
 ~~~
 
+4.7.4
+-
+
+`4.7.4 on GitHub `__
+
+* Fix completion widget text for paths and files.
+* Make Qtconsole work on Python 3.8 and Windows.
+
 .. _4.7.3:
 
 4.7.3
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/qtconsole-4.7.3/qtconsole/_version.py 
new/qtconsole-4.7.4/qtconsole/_version.py
--- old/qtconsole-4.7.3/qtconsole/_version.py   2020-04-16 17:23:35.0 
+0200
+++ new/qtconsole-4.7.4/qtconsole/_version.py   2020-05-13 17:01:51.0 
+0200
@@ -1,2 +1,2 @@
-version_info = (4, 7, 3)
+version_info = (4, 7, 4)
 __version__ = '.'.join(map(str, version_info))
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/qtconsole-4.7.3/qtconsole/call_tip_widget.py 
new/qtconsole-4.7.4/qtconsole/call_tip_widget.py
--- old/qtconsole-4.7.3/qtconsole/call_tip_widget.py2020-02-09 
17:06:19.0 +0100
+++ new/qtconsole-4.7.4/qtconsole/call_tip_widget.py2020-05-13 
16:46:51.0 +0200
@@ -85,8 +85,12 @@
 """ Reimplemented to disconnect signal handlers and event filter.
 """
 super(CallTipWidget, self).hideEvent(event)
-self._text_edit.cursorPositionChanged.disconnect(
-self._cursor_position_changed)
+# This fixes issue jupyter/qtconsole#383
+try:
+self._text_edit.cursorPositionChanged.disconnect(
+self._cursor_position_changed)
+except TypeError:
+pass
 self._text_edit.removeEventFilter(self)
 
 def leaveEvent(self, event):
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/qtconsole-4.7.3/qtconsole/completion_widget.py 
new/qtconsole-4.7.4/qtconsole/completion_widget.py
--- old/qtconsole-4.7.3/qtconsole/completion_widget.py  2020-03-03 
02:19:12.0 +0100
+++ new/qtconsole-4.7.4/qtconsole/completion_widget.py  2020-05-13 
16:46:51.0 +0200
@@ -116,7 +116,8 @@
 else:
 list_item = QtWidgets.QListWidgetItem()
 list_item.setData(QtCore.Qt.UserRole, item)
-list_item.setText(item.split('.')[-1])
+# Need to split to only show last element of a dot completion
+list_item.setText(item.split(".")[-1])
 se

commit python-qtconsole for openSUSE:Factory

2020-04-27 Thread root
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 
+
+- 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-INFO2020-03-25 17:37:20.0 +0100
+++ new/qtconsole-4.7.3/PKG-INFO2020-04-16 17:24:40.0 +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.0 +0100
+++ new/qtconsole-4.7.3/docs/source/changelog.rst   2020-04-16 
17:20:45.0 +0200
@@ -8,6 +8,15 @@
 4.7
 ~~~
 
+.. _4.7.3:
+
+4.7.3
+-
+
+`4.7.3 on GitHub `__
+
+* 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.0 
+0100
+++ new/qtconsole-4.7.3/qtconsole/_version.py   2020-04-16 17:23:35.0 
+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.0 
+0100
+++ new/qtconsole-4.7.3/qtconsole/mainwindow.py 2020-04-16 17:18:58.0 
+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(

commit python-qtconsole for openSUSE:Factory

2020-04-05 Thread root
Hello community,

here is the log from the commit of package python-qtconsole for 
openSUSE:Factory checked in at 2020-04-05 20:55:30

Comparing /work/SRC/openSUSE:Factory/python-qtconsole (Old)
 and  /work/SRC/openSUSE:Factory/.python-qtconsole.new.3248 (New)


Package is "python-qtconsole"

Sun Apr  5 20:55:30 2020 rev:7 rq:791441 version:4.7.2

Changes:

--- /work/SRC/openSUSE:Factory/python-qtconsole/python-qtconsole.changes
2020-03-17 13:08:02.457702016 +0100
+++ 
/work/SRC/openSUSE:Factory/.python-qtconsole.new.3248/python-qtconsole.changes  
2020-04-05 20:55:31.625312790 +0200
@@ -1,0 +2,7 @@
+Sat Mar 28 16:34:48 UTC 2020 - Arun Persaud 
+
+- update to version 4.7.2:
+  * Set updated prompt as previous prompt object in JupyterWidget.
+  * Fix some Qt incorrect imports.
+
+---

Old:

  qtconsole-4.7.1.tar.gz

New:

  qtconsole-4.7.2.tar.gz



Other differences:
--
++ python-qtconsole.spec ++
--- /var/tmp/diff_new_pack.cifdj7/_old  2020-04-05 20:55:32.317313533 +0200
+++ /var/tmp/diff_new_pack.cifdj7/_new  2020-04-05 20:55:32.321313537 +0200
@@ -19,7 +19,7 @@
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 %define skip_python2 1
 Name:   python-qtconsole
-Version:4.7.1
+Version:4.7.2
 Release:0
 Summary:Jupyter Qt console
 License:BSD-3-Clause

++ qtconsole-4.7.1.tar.gz -> qtconsole-4.7.2.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/qtconsole-4.7.1/PKG-INFO new/qtconsole-4.7.2/PKG-INFO
--- old/qtconsole-4.7.1/PKG-INFO2020-03-03 02:25:47.0 +0100
+++ new/qtconsole-4.7.2/PKG-INFO2020-03-25 17:37:20.0 +0100
@@ -1,6 +1,6 @@
 Metadata-Version: 2.1
 Name: qtconsole
-Version: 4.7.1
+Version: 4.7.2
 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.1/docs/source/changelog.rst 
new/qtconsole-4.7.2/docs/source/changelog.rst
--- old/qtconsole-4.7.1/docs/source/changelog.rst   2020-03-03 
02:23:21.0 +0100
+++ new/qtconsole-4.7.2/docs/source/changelog.rst   2020-03-25 
17:24:12.0 +0100
@@ -8,6 +8,16 @@
 4.7
 ~~~
 
+.. _4.7.2:
+
+4.7.2
+-
+
+`4.7.2 on GitHub `__
+
+* Set updated prompt as previous prompt object in JupyterWidget.
+* Fix some Qt incorrect imports.
+
 .. _4.7.1:
 
 4.7.1
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/qtconsole-4.7.1/qtconsole/_version.py 
new/qtconsole-4.7.2/qtconsole/_version.py
--- old/qtconsole-4.7.1/qtconsole/_version.py   2020-03-03 02:24:56.0 
+0100
+++ new/qtconsole-4.7.2/qtconsole/_version.py   2020-03-25 17:27:40.0 
+0100
@@ -1,2 +1,2 @@
-version_info = (4, 7, 1)
+version_info = (4, 7, 2)
 __version__ = '.'.join(map(str, version_info))
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/qtconsole-4.7.1/qtconsole/console_widget.py 
new/qtconsole-4.7.2/qtconsole/console_widget.py
--- old/qtconsole-4.7.1/qtconsole/console_widget.py 2020-03-03 
02:19:12.0 +0100
+++ new/qtconsole-4.7.2/qtconsole/console_widget.py 2020-03-25 
17:22:00.0 +0100
@@ -13,7 +13,7 @@
 from unicodedata import category
 import webbrowser
 
-from qtpy import QtCore, QtGui, QtWidgets
+from qtpy import QtCore, QtGui, QtPrintSupport, QtWidgets
 
 from traitlets.config.configurable import LoggingConfigurable
 from qtconsole.rich_text import HtmlExporter
@@ -238,7 +238,7 @@
 layout.setContentsMargins(0, 0, 0, 0)
 self._control = self._create_control()
 if self.paging in ('hsplit', 'vsplit'):
-self._splitter = QtGui.QSplitter()
+self._splitter = QtWidgets.QSplitter()
 if self.paging == 'hsplit':
 self._splitter.setOrientation(QtCore.Qt.Horizontal)
 else:
@@ -804,8 +804,8 @@
 """ Print the contents of the ConsoleWidget to the specified QPrinter.
 """
 if (not printer):
-printer = QtGui.QPrinter()
-if(QtGui.QPrintDialog(printer).exec_() != QtGui.QDialog.Accepted):
+printer = QtPrintSupport.QPrinter()
+if(QtPrintSupport.QPrintDialog(printer).exec_() != 
QtPrintSupport.QPrintDialog.Accepted):
 return
 self._control.print_(printer)
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/qtconsole-4.7.1/qtconsole/jupyter_widget.py 
new/qtco

commit python-qtconsole for openSUSE:Factory

2020-03-17 Thread root
Hello community,

here is the log from the commit of package python-qtconsole for 
openSUSE:Factory checked in at 2020-03-17 13:08:01

Comparing /work/SRC/openSUSE:Factory/python-qtconsole (Old)
 and  /work/SRC/openSUSE:Factory/.python-qtconsole.new.3160 (New)


Package is "python-qtconsole"

Tue Mar 17 13:08:01 2020 rev:6 rq:784707 version:4.7.1

Changes:

--- /work/SRC/openSUSE:Factory/python-qtconsole/python-qtconsole.changes
2020-03-04 09:47:26.454180799 +0100
+++ 
/work/SRC/openSUSE:Factory/.python-qtconsole.new.3160/python-qtconsole.changes  
2020-03-17 13:08:02.457702016 +0100
@@ -1,0 +2,7 @@
+Thu Mar 12 19:40:04 UTC 2020 - Arun Persaud 
+
+- update to version 4.7.1:
+  * Remove common prefix from path completions.
+  * Use QtWidgets instead of QtGui to create QMenu instances.
+
+---

Old:

  qtconsole-4.7.0.tar.gz

New:

  qtconsole-4.7.1.tar.gz



Other differences:
--
++ python-qtconsole.spec ++
--- /var/tmp/diff_new_pack.FXnXwK/_old  2020-03-17 13:08:02.953702396 +0100
+++ /var/tmp/diff_new_pack.FXnXwK/_new  2020-03-17 13:08:02.957702400 +0100
@@ -19,7 +19,7 @@
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 %define skip_python2 1
 Name:   python-qtconsole
-Version:4.7.0
+Version:4.7.1
 Release:0
 Summary:Jupyter Qt console
 License:BSD-3-Clause
@@ -36,8 +36,9 @@
 BuildRequires:  python-rpm-macros
 BuildRequires:  unzip
 BuildRequires:  update-desktop-files
-Requires:   python-QtPy
+Requires:   jupyter-qtconsole = %{version}
 Requires:   python-Pygments
+Requires:   python-QtPy
 Requires:   python-ipykernel >= 4.1
 Requires:   python-ipython_genutils
 Requires:   python-jupyter-client >= 4.1
@@ -46,7 +47,6 @@
 Requires:   python-traitlets
 Provides:   python-jupyter_qtconsole = %{version}
 Obsoletes:  python-jupyter_qtconsole < %{version}
-Requires:   jupyter-qtconsole = %{version}
 BuildArch:  noarch
 # SECTION test requirements
 BuildRequires:  %{python_module Pygments}
@@ -57,13 +57,12 @@
 BuildRequires:  %{python_module jupyter-client >= 4.1}
 BuildRequires:  %{python_module nose}
 BuildRequires:  %{python_module pexpect}
-BuildRequires:  %{python_module pytest}
 BuildRequires:  %{python_module pytest-qt}
+BuildRequires:  %{python_module pytest}
 BuildRequires:  %{python_module qt5}
 BuildRequires:  %{python_module sip}
 BuildRequires:  %{python_module traitlets}
 # /SECTION
-
 %python_subpackages
 
 %description
@@ -74,17 +73,18 @@
 
 %package -n jupyter-qtconsole
 Summary:Jupyter Qt console
-Requires:   python3-qtconsole = %{version}
-Requires:   python3-jupyter-core
+Group:  Development/Languages/Python
 Requires:   jupyter-ipykernel >= 4.1
 Requires:   jupyter-jupyter-client >= 4.1
 Requires:   jupyter-jupyter-core
+Requires:   python3-jupyter-core
+Requires:   python3-qtconsole = %{version}
 Conflicts:  python3-jupyter_qtconsole < 4.4.4
 Provides:   jupyter-qtconsole-doc = %{version}
 Obsoletes:  jupyter-qtconsole-doc < %{version}
-Provides:   python-qtconsole-doc = %{version}
-Provides:   %{python_module qtconsole-doc = %{version}}
 Provides:   %{python_module jupyter_qtconsole-doc = %{version}}
+Provides:   %{python_module qtconsole-doc = %{version}}
+Provides:   python-qtconsole-doc = %{version}
 Obsoletes:  %{python_module jupyter_qtconsole-doc < %{version}}
 
 %description -n jupyter-qtconsole

++ qtconsole-4.7.0.tar.gz -> qtconsole-4.7.1.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/qtconsole-4.7.0/PKG-INFO new/qtconsole-4.7.1/PKG-INFO
--- old/qtconsole-4.7.0/PKG-INFO2020-02-29 20:23:10.0 +0100
+++ new/qtconsole-4.7.1/PKG-INFO2020-03-03 02:25:47.0 +0100
@@ -1,6 +1,6 @@
 Metadata-Version: 2.1
 Name: qtconsole
-Version: 4.7.0
+Version: 4.7.1
 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.0/docs/source/changelog.rst 
new/qtconsole-4.7.1/docs/source/changelog.rst
--- old/qtconsole-4.7.0/docs/source/changelog.rst   2020-02-29 
20:20:04.0 +0100
+++ new/qtconsole-4.7.1/docs/source/changelog.rst   2020-03-03 
02:23:21.0 +0100
@@ -8,6 +8,16 @@
 4.7
 ~~~
 
+.. _4.7.1:
+
+4.7.1
+-
+
+`4.7.1 on GitHub `__
+
+* Remove common prefix from path completions.
+* Use QtWidgets instead of QtGui to create QMenu instances.
+
 4.7.0
 --

commit python-qtconsole for openSUSE:Factory

2020-03-04 Thread root
Hello community,

here is the log from the commit of package python-qtconsole for 
openSUSE:Factory checked in at 2020-03-04 09:47:09

Comparing /work/SRC/openSUSE:Factory/python-qtconsole (Old)
 and  /work/SRC/openSUSE:Factory/.python-qtconsole.new.26092 (New)


Package is "python-qtconsole"

Wed Mar  4 09:47:09 2020 rev:5 rq:781244 version:4.7.0

Changes:

--- /work/SRC/openSUSE:Factory/python-qtconsole/python-qtconsole.changes
2019-11-24 00:38:53.499273282 +0100
+++ 
/work/SRC/openSUSE:Factory/.python-qtconsole.new.26092/python-qtconsole.changes 
2020-03-04 09:47:26.454180799 +0100
@@ -1,0 +2,13 @@
+Tue Mar  3 14:27:44 UTC 2020 - Todd R 
+
+- Update to version 4.7.0
+  + Additions
+* Use qtpy as the shim layer for Python Qt bindings and remove our own 
shim.
+  + Changes
+* Remove code to expand tabs to spaces.
+* Skip history if it is the same as the input buffer.
+- Drop doc subpackage due to rapid changes in readthedocs download
+  urls.  This was a hold-over from when the tests were run in a
+  separate doc subpackage.
+
+---

Old:

  qtconsole-4.6.0.tar.gz
  qtconsole.pdf
  qtconsole.zip

New:

  python-qtconsole-rpmlintrc
  qtconsole-4.7.0.tar.gz



Other differences:
--
++ python-qtconsole.spec ++
--- /var/tmp/diff_new_pack.N1fw5r/_old  2020-03-04 09:47:27.634181506 +0100
+++ /var/tmp/diff_new_pack.N1fw5r/_new  2020-03-04 09:47:27.634181506 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package python-qtconsole
 #
-# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2020 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -19,16 +19,14 @@
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 %define skip_python2 1
 Name:   python-qtconsole
-Version:4.6.0
-%define doc_ver 4.6.0
+Version:4.7.0
 Release:0
 Summary:Jupyter Qt console
 License:BSD-3-Clause
 Group:  Development/Languages/Python
 URL:https://github.com/jupyter/qtconsole
 Source0:
https://files.pythonhosted.org/packages/source/q/qtconsole/qtconsole-%{version}.tar.gz
-Source1:
https://media.readthedocs.org/pdf/qtconsole/%{doc_ver}/qtconsole.pdf
-Source2:
https://media.readthedocs.org/htmlzip/qtconsole/%{doc_ver}/qtconsole.zip
+Source100:  python-qtconsole-rpmlintrc
 BuildRequires:  %{python_module jupyter-core}
 BuildRequires:  %{python_module setuptools}
 BuildRequires:  desktop-file-utils
@@ -38,6 +36,7 @@
 BuildRequires:  python-rpm-macros
 BuildRequires:  unzip
 BuildRequires:  update-desktop-files
+Requires:   python-QtPy
 Requires:   python-Pygments
 Requires:   python-ipykernel >= 4.1
 Requires:   python-ipython_genutils
@@ -51,6 +50,8 @@
 BuildArch:  noarch
 # SECTION test requirements
 BuildRequires:  %{python_module Pygments}
+BuildRequires:  %{python_module QtPy}
+BuildRequires:  %{python_module flaky}
 BuildRequires:  %{python_module ipykernel >= 4.1}
 BuildRequires:  %{python_module ipython_genutils}
 BuildRequires:  %{python_module jupyter-client >= 4.1}
@@ -74,10 +75,17 @@
 %package -n jupyter-qtconsole
 Summary:Jupyter Qt console
 Requires:   python3-qtconsole = %{version}
+Requires:   python3-jupyter-core
 Requires:   jupyter-ipykernel >= 4.1
 Requires:   jupyter-jupyter-client >= 4.1
 Requires:   jupyter-jupyter-core
 Conflicts:  python3-jupyter_qtconsole < 4.4.4
+Provides:   jupyter-qtconsole-doc = %{version}
+Obsoletes:  jupyter-qtconsole-doc < %{version}
+Provides:   python-qtconsole-doc = %{version}
+Provides:   %{python_module qtconsole-doc = %{version}}
+Provides:   %{python_module jupyter_qtconsole-doc = %{version}}
+Obsoletes:  %{python_module jupyter_qtconsole-doc < %{version}}
 
 %description -n jupyter-qtconsole
 A rich Qt-based console for working with Jupyter kernels,
@@ -85,23 +93,8 @@
 
 This package provides the jupyter components.
 
-%package -n jupyter-qtconsole-doc
-Summary:Documentation for the Jupyter Qt console
-Group:  Documentation/Other
-Provides:   python-qtconsole-doc = %{version}
-Provides:   %{python_module qtconsole-doc = %{version}}
-Provides:   %{python_module jupyter_qtconsole-doc = %{version}}
-Obsoletes:  %{python_module jupyter_qtconsole-doc < %{version}}
-
-%description -n jupyter-qtconsole-doc
-Documentation and help files for Jupyter's Qt console.
-
 %prep
 %setup -q -n qtconsole-%{version}
-cp %{SOURCE1} .
-unzip %{SOURCE2} -d docs
-mv docs/qtconsole-* docs/html
-rm docs/html/.b

commit python-qtconsole for openSUSE:Factory

2019-11-23 Thread root
Hello community,

here is the log from the commit of package python-qtconsole for 
openSUSE:Factory checked in at 2019-11-24 00:38:51

Comparing /work/SRC/openSUSE:Factory/python-qtconsole (Old)
 and  /work/SRC/openSUSE:Factory/.python-qtconsole.new.26869 (New)


Package is "python-qtconsole"

Sun Nov 24 00:38:51 2019 rev:4 rq:750390 version:4.6.0

Changes:

--- /work/SRC/openSUSE:Factory/python-qtconsole/python-qtconsole.changes
2019-07-29 17:30:51.914202843 +0200
+++ 
/work/SRC/openSUSE:Factory/.python-qtconsole.new.26869/python-qtconsole.changes 
2019-11-24 00:38:53.499273282 +0100
@@ -1,0 +2,22 @@
+Fri Nov 22 21:17:54 UTC 2019 - Todd R 
+
+- Update to version 4.6.0
+  + Additions
+* Add an option to configure scrollbar visibility.
+  + Changes
+* Avoid introducing a new line when executing code.
+
+---
+Tue Nov 12 16:48:16 UTC 2019 - Todd R 
+
+- Update to version 4.5.5
+  * Set console to read only after input.
+  * Allow text to be added before the prompt while autocompleting.
+  * Scroll when adding text even when not executing.
+- Update to versionn 4.5.4
+  * Fix emoji highlighting.
+- Update to versionn 4.5.3
+  * Fix error when closing comms.
+  * Fix prompt automatically scrolling down on execution.
+
+---

Old:

  qtconsole-4.5.2.tar.gz

New:

  qtconsole-4.6.0.tar.gz



Other differences:
--
++ python-qtconsole.spec ++
--- /var/tmp/diff_new_pack.BqFQOv/_old  2019-11-24 00:38:59.583273628 +0100
+++ /var/tmp/diff_new_pack.BqFQOv/_new  2019-11-24 00:38:59.583273628 +0100
@@ -17,9 +17,10 @@
 
 
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
+%define skip_python2 1
 Name:   python-qtconsole
-Version:4.5.2
-%define doc_ver 4.5.1
+Version:4.6.0
+%define doc_ver 4.6.0
 Release:0
 Summary:Jupyter Qt console
 License:BSD-3-Clause
@@ -28,10 +29,11 @@
 Source0:
https://files.pythonhosted.org/packages/source/q/qtconsole/qtconsole-%{version}.tar.gz
 Source1:
https://media.readthedocs.org/pdf/qtconsole/%{doc_ver}/qtconsole.pdf
 Source2:
https://media.readthedocs.org/htmlzip/qtconsole/%{doc_ver}/qtconsole.zip
-BuildRequires:  %{python_module jupyter_core}
+BuildRequires:  %{python_module jupyter-core}
 BuildRequires:  %{python_module setuptools}
 BuildRequires:  desktop-file-utils
 BuildRequires:  fdupes
+BuildRequires:  gdb
 BuildRequires:  hicolor-icon-theme
 BuildRequires:  python-rpm-macros
 BuildRequires:  unzip
@@ -39,8 +41,8 @@
 Requires:   python-Pygments
 Requires:   python-ipykernel >= 4.1
 Requires:   python-ipython_genutils
-Requires:   python-jupyter_client >= 4.1
-Requires:   python-jupyter_core
+Requires:   python-jupyter-client >= 4.1
+Requires:   python-jupyter-core
 Requires:   python-sip
 Requires:   python-traitlets
 Provides:   python-jupyter_qtconsole = %{version}
@@ -51,10 +53,11 @@
 BuildRequires:  %{python_module Pygments}
 BuildRequires:  %{python_module ipykernel >= 4.1}
 BuildRequires:  %{python_module ipython_genutils}
-BuildRequires:  %{python_module jupyter_client >= 4.1}
+BuildRequires:  %{python_module jupyter-client >= 4.1}
 BuildRequires:  %{python_module nose}
 BuildRequires:  %{python_module pexpect}
 BuildRequires:  %{python_module pytest}
+BuildRequires:  %{python_module pytest-qt}
 BuildRequires:  %{python_module qt5}
 BuildRequires:  %{python_module sip}
 BuildRequires:  %{python_module traitlets}
@@ -72,8 +75,8 @@
 Summary:Jupyter Qt console
 Requires:   python3-qtconsole = %{version}
 Requires:   jupyter-ipykernel >= 4.1
-Requires:   jupyter-jupyter_client >= 4.1
-Requires:   jupyter-jupyter_core
+Requires:   jupyter-jupyter-client >= 4.1
+Requires:   jupyter-jupyter-core
 Conflicts:  python3-jupyter_qtconsole < 4.4.4
 
 %description -n jupyter-qtconsole
@@ -126,8 +129,8 @@
 %fdupes %{buildroot}%{_docdir}/jupyter-qtconsole/
 
 %check
-rm -rf build _build.*
-%python_expand pytest-%{$python_bin_suffix}
+export QT_QPA_PLATFORM="offscreen"
+%pytest
 
 %files %{python_files}
 %license LICENSE

++ qtconsole-4.5.2.tar.gz -> qtconsole-4.6.0.tar.gz ++
 1955 lines of diff (skipped)

++ qtconsole.pdf ++
(binary differes)

++ qtconsole.zip ++
Binary files /var/tmp/diff_new_pack.BqFQOv/_old and 
/var/tmp/diff_new_pack.BqFQOv/_new differ




commit python-qtconsole for openSUSE:Factory

2019-07-29 Thread root
Hello community,

here is the log from the commit of package python-qtconsole for 
openSUSE:Factory checked in at 2019-07-29 17:30:51

Comparing /work/SRC/openSUSE:Factory/python-qtconsole (Old)
 and  /work/SRC/openSUSE:Factory/.python-qtconsole.new.4126 (New)


Package is "python-qtconsole"

Mon Jul 29 17:30:51 2019 rev:3 rq:719453 version:4.5.2

Changes:

--- /work/SRC/openSUSE:Factory/python-qtconsole/python-qtconsole.changes
2019-06-13 23:03:40.943375905 +0200
+++ 
/work/SRC/openSUSE:Factory/.python-qtconsole.new.4126/python-qtconsole.changes  
2019-07-29 17:30:51.914202843 +0200
@@ -1,0 +2,8 @@
+Mon Jul 29 02:22:01 UTC 2019 - Todd R 
+
+- Update to versionn 4.5.2
+  * Remove deprecation warnings in Python 3.8
+  * Improve positioning and content of completion widget.
+  * Scroll down for output from remote commands.
+
+---

Old:

  qtconsole-4.5.1.tar.gz

New:

  qtconsole-4.5.2.tar.gz



Other differences:
--
++ python-qtconsole.spec ++
--- /var/tmp/diff_new_pack.Oxcx4U/_old  2019-07-29 17:30:53.138202390 +0200
+++ /var/tmp/diff_new_pack.Oxcx4U/_new  2019-07-29 17:30:53.138202390 +0200
@@ -18,7 +18,7 @@
 
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 Name:   python-qtconsole
-Version:4.5.1
+Version:4.5.2
 %define doc_ver 4.5.1
 Release:0
 Summary:Jupyter Qt console

++ qtconsole-4.5.1.tar.gz -> qtconsole-4.5.2.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/qtconsole-4.5.1/PKG-INFO new/qtconsole-4.5.2/PKG-INFO
--- old/qtconsole-4.5.1/PKG-INFO2019-05-27 15:10:45.0 +0200
+++ new/qtconsole-4.5.2/PKG-INFO2019-07-23 13:58:17.0 +0200
@@ -1,6 +1,6 @@
 Metadata-Version: 2.1
 Name: qtconsole
-Version: 4.5.1
+Version: 4.5.2
 Summary: Jupyter Qt console
 Home-page: http://jupyter.org
 Author: Jupyter Development Team
@@ -96,5 +96,5 @@
 Classifier: Programming Language :: Python :: 3.6
 Classifier: Programming Language :: Python :: 3.7
 Description-Content-Type: text/markdown
-Provides-Extra: test
 Provides-Extra: doc
+Provides-Extra: test
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/qtconsole-4.5.1/docs/source/changelog.rst 
new/qtconsole-4.5.2/docs/source/changelog.rst
--- old/qtconsole-4.5.1/docs/source/changelog.rst   2019-05-27 
15:08:39.0 +0200
+++ new/qtconsole-4.5.2/docs/source/changelog.rst   2019-07-23 
13:54:38.0 +0200
@@ -3,6 +3,15 @@
 Changes in Jupyter Qt console
 =
 
+.. _4.5.2:
+
+`4.5.2 on GitHub `__
+
+- Remove deprecation warnings in Python 3.8
+- Improve positioning and content of completion widget.
+- Scroll down for output from remote commands.
+
+
 .. _4.5.1:
 
 `4.5.1 on GitHub `__
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/qtconsole-4.5.1/qtconsole/_version.py 
new/qtconsole-4.5.2/qtconsole/_version.py
--- old/qtconsole-4.5.1/qtconsole/_version.py   2019-05-27 15:09:58.0 
+0200
+++ new/qtconsole-4.5.2/qtconsole/_version.py   2019-07-23 13:56:45.0 
+0200
@@ -1,2 +1,2 @@
-version_info = (4, 5, 1)
+version_info = (4, 5, 2)
 __version__ = '.'.join(map(str, version_info))
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/qtconsole-4.5.1/qtconsole/completion_html.py 
new/qtconsole-4.5.2/qtconsole/completion_html.py
--- old/qtconsole-4.5.1/qtconsole/completion_html.py2018-08-12 
00:38:18.0 +0200
+++ new/qtconsole-4.5.2/qtconsole/completion_html.py2019-07-23 
13:49:55.0 +0200
@@ -296,12 +296,15 @@
 r, c = self._index
 self._select_index(r, c+1)
 
-def show_items(self, cursor, items):
+def show_items(self, cursor, items, prefix_length=0):
 """ Shows the completion widget with 'items' at the position specified
 by 'cursor'.
 """
 if not items :
 return
+# Move cursor to start of the prefix to replace it
+# when a item is selected
+cursor.movePosition(QtGui.QTextCursor.Left, n=prefix_length)
 self._start_position = cursor.position()
 self._consecutive_tab = 1
 # Calculate the number of characters available.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/qtconsole-4.5.1/qtconsole/completion_plain.py 
new/qtconsole-4.5.2/qtconsole/completion_plain.py
--- old/qtconsole-4.5.1/qtconsole/completion_plain.py   201

commit python-qtconsole for openSUSE:Factory

2019-06-13 Thread root
Hello community,

here is the log from the commit of package python-qtconsole for 
openSUSE:Factory checked in at 2019-06-13 23:03:40

Comparing /work/SRC/openSUSE:Factory/python-qtconsole (Old)
 and  /work/SRC/openSUSE:Factory/.python-qtconsole.new.4811 (New)


Package is "python-qtconsole"

Thu Jun 13 23:03:40 2019 rev:2 rq:709553 version:4.5.1

Changes:

--- /work/SRC/openSUSE:Factory/python-qtconsole/python-qtconsole.changes
2019-05-22 11:13:54.826557198 +0200
+++ 
/work/SRC/openSUSE:Factory/.python-qtconsole.new.4811/python-qtconsole.changes  
2019-06-13 23:03:40.943375905 +0200
@@ -1,0 +2,12 @@
+Wed Jun 12 19:55:58 UTC 2019 - Todd R 
+
+- Update to version 4.5.1
+  * Only use setuptools in setup.py to fix uploading tarballs to PyPI.
+- Update to version 4.5
+  + Additions
+* Add Comms to qtconsole.
+* Add kernel language name as an attribute of JupyterWidget.
+  + Changes
+* Use new traitlets API with decorators.
+
+---

Old:

  qtconsole-4.4.4.tar.gz

New:

  qtconsole-4.5.1.tar.gz



Other differences:
--
++ python-qtconsole.spec ++
--- /var/tmp/diff_new_pack.PF44Nb/_old  2019-06-13 23:03:42.531374524 +0200
+++ /var/tmp/diff_new_pack.PF44Nb/_new  2019-06-13 23:03:42.531374524 +0200
@@ -18,8 +18,8 @@
 
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 Name:   python-qtconsole
-Version:4.4.4
-%define doc_ver 4.4.3
+Version:4.5.1
+%define doc_ver 4.5.1
 Release:0
 Summary:Jupyter Qt console
 License:BSD-3-Clause
@@ -88,7 +88,7 @@
 Provides:   python-qtconsole-doc = %{version}
 Provides:   %{python_module qtconsole-doc = %{version}}
 Provides:   %{python_module jupyter_qtconsole-doc = %{version}}
-Obsoletes:  %{python_module jupyter_qtconsole-doc <= %{version}}
+Obsoletes:  %{python_module jupyter_qtconsole-doc < %{version}}
 
 %description -n jupyter-qtconsole-doc
 Documentation and help files for Jupyter's Qt console.

++ qtconsole-4.4.4.tar.gz -> qtconsole-4.5.1.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/qtconsole-4.4.4/MANIFEST.in 
new/qtconsole-4.5.1/MANIFEST.in
--- old/qtconsole-4.4.4/MANIFEST.in 1970-01-01 01:00:00.0 +0100
+++ new/qtconsole-4.5.1/MANIFEST.in 2018-08-12 00:38:18.0 +0200
@@ -0,0 +1,22 @@
+include LICENSE
+include CONTRIBUTING.md
+include README.md
+
+# Documentation
+graft docs
+exclude docs/\#*
+
+# Examples
+graft examples
+
+# docs subdirs we want to skip
+prune docs/build
+prune docs/gh-pages
+prune docs/dist
+
+# Patterns to exclude from any directory
+global-exclude *~
+global-exclude *.pyc
+global-exclude *.pyo
+global-exclude .git
+global-exclude .ipynb_checkpoints
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/qtconsole-4.4.4/PKG-INFO new/qtconsole-4.5.1/PKG-INFO
--- old/qtconsole-4.4.4/PKG-INFO2019-05-03 11:31:58.0 +0200
+++ new/qtconsole-4.5.1/PKG-INFO2019-05-27 15:10:45.0 +0200
@@ -1,12 +1,86 @@
-Metadata-Version: 1.1
+Metadata-Version: 2.1
 Name: qtconsole
-Version: 4.4.4
+Version: 4.5.1
 Summary: Jupyter Qt console
 Home-page: http://jupyter.org
 Author: Jupyter Development Team
 Author-email: jupy...@googlegroups.com
+Maintainer: Spyder Development Team
 License: BSD
-Description: Qt-based console for Jupyter with support for rich media output
+Description: # Jupyter QtConsole
+
+[![Build 
Status](https://travis-ci.org/jupyter/qtconsole.svg?branch=master)](https://travis-ci.org/jupyter/qtconsole)
+[![Coverage 
Status](https://coveralls.io/repos/github/jupyter/qtconsole/badge.svg?branch=master)](https://coveralls.io/github/jupyter/qtconsole?branch=master)
+[![Documentation 
Status](https://readthedocs.org/projects/qtconsole/badge/?version=stable)](https://qtconsole.readthedocs.io/en/stable/)
+[![Google 
Group](https://img.shields.io/badge/-Google%20Group-lightgrey.svg)](https://groups.google.com/forum/#!forum/jupyter)
+
+A rich Qt-based console for working with Jupyter kernels,
+supporting rich media output, session export, and more.
+
+The Qtconsole is a very lightweight application that largely feels 
like a terminal, but
+provides a number of enhancements only possible in a GUI, such as 
inline
+figures, proper multiline editing with syntax highlighting, graphical 
calltips,
+and more.
+
+
![qtconsole](https://raw.githubusercontent.com/jupyter/qtconsole/master/docs/source/_images/qtconsole.png)
+
+## Install Qtconsole
+The Q