Hello community,
here is the log from the commit of package python-terminado for
openSUSE:Factory checked in at 2019-06-13 23:03:37
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-terminado (Old)
and /work/SRC/openSUSE:Factory/.python-terminado.new.4811 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-terminado"
Thu Jun 13 23:03:37 2019 rev:6 rq:709550 version:0.8.2
Changes:
--------
--- /work/SRC/openSUSE:Factory/python-terminado/python-terminado.changes
2018-02-14 10:52:37.183529244 +0100
+++
/work/SRC/openSUSE:Factory/.python-terminado.new.4811/python-terminado.changes
2019-06-13 23:03:38.371378140 +0200
@@ -1,0 +2,7 @@
+Wed Jun 12 19:50:31 UTC 2019 - Todd R <[email protected]>
+
+- Update to version 0.8.2
+ * Fix Delete Terminal Not Working with Tornado version 6.0.1
+ * Set websocket.terminal to None when the child exits
+
+-------------------------------------------------------------------
Old:
----
terminado-0.8.1.tar.gz
New:
----
terminado-0.8.2.tar.gz
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ python-terminado.spec ++++++
--- /var/tmp/diff_new_pack.kPxlck/_old 2019-06-13 23:03:39.939376777 +0200
+++ /var/tmp/diff_new_pack.kPxlck/_new 2019-06-13 23:03:39.959376759 +0200
@@ -1,7 +1,7 @@
#
# spec file for package python-terminado
#
-# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@@ -12,7 +12,7 @@
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.
-# Please submit bugfixes or comments via http://bugs.opensuse.org/
+# Please submit bugfixes or comments via https://bugs.opensuse.org/
#
@@ -21,24 +21,23 @@
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
Name: python-terminado
-Version: 0.8.1
+Version: 0.8.2
Release: 0
Summary: Terminals served to termjs using Tornado websockets
License: BSD-2-Clause
Group: Development/Languages/Python
Url: https://github.com/jupyter/terminado
Source:
https://files.pythonhosted.org/packages/source/t/terminado/terminado-%{version}.tar.gz
-BuildRequires: %{python_module devel}
BuildRequires: %{python_module ptyprocess}
BuildRequires: %{python_module setuptools}
-BuildRequires: %{python_module tornado}
+BuildRequires: %{python_module tornado >= 4}
BuildRequires: fdupes
BuildRequires: python-rpm-macros
%if %{with tests}
BuildRequires: %{python_module pytest}
%endif
Requires: python-ptyprocess
-Requires: python-tornado
+Requires: python-tornado >= 4
BuildArch: noarch
%python_subpackages
@@ -70,7 +69,6 @@
%endif
%files %{python_files}
-%defattr(-,root,root,-)
%doc README.rst
%{python_sitelib}/*
++++++ terminado-0.8.1.tar.gz -> terminado-0.8.2.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/terminado-0.8.1/PKG-INFO new/terminado-0.8.2/PKG-INFO
--- old/terminado-0.8.1/PKG-INFO 1970-01-01 01:00:00.000000000 +0100
+++ new/terminado-0.8.2/PKG-INFO 1970-01-01 01:00:00.000000000 +0100
@@ -1,6 +1,6 @@
Metadata-Version: 1.1
Name: terminado
-Version: 0.8.1
+Version: 0.8.2
Summary: Terminals served to xterm.js using Tornado websockets
Home-page: https://github.com/jupyter/terminado
Author: Jupyter Development Team
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/terminado-0.8.1/appveyor.yml
new/terminado-0.8.2/appveyor.yml
--- old/terminado-0.8.1/appveyor.yml 2017-11-28 11:58:19.970883000 +0100
+++ new/terminado-0.8.2/appveyor.yml 2019-03-28 18:58:43.420910400 +0100
@@ -26,4 +26,4 @@
- set PATH=%PYTHON%\\scripts;%PATH%
- 'pip install tornado pywinpty pytest'
test_script:
- - 'py.test'
+ - 'py.test terminado/tests/basic_test.py::CommonTests::test_basic'
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/terminado-0.8.1/pyproject.toml
new/terminado-0.8.2/pyproject.toml
--- old/terminado-0.8.1/pyproject.toml 2017-11-28 11:58:19.971196000 +0100
+++ new/terminado-0.8.2/pyproject.toml 2019-03-28 18:58:43.420910400 +0100
@@ -13,6 +13,7 @@
"pywinpty (>=0.5);os_name=='nt'",
"tornado (>=4)",
]
+requires-python=">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*"
classifiers=[
"Environment :: Web Environment",
"License :: OSI Approved :: BSD License",
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/terminado-0.8.1/setup.py new/terminado-0.8.2/setup.py
--- old/terminado-0.8.1/setup.py 1970-01-01 01:00:00.000000000 +0100
+++ new/terminado-0.8.2/setup.py 1970-01-01 01:00:00.000000000 +0100
@@ -16,7 +16,7 @@
{":os_name!='nt'": ['ptyprocess'], ":os_name=='nt'": ['pywinpty>=0.5']}
setup(name='terminado',
- version='0.8.1',
+ version='0.8.2',
description='Terminals served to xterm.js using Tornado websockets',
author='Jupyter Development Team',
author_email='[email protected]',
@@ -25,4 +25,5 @@
package_data=package_data,
install_requires=install_requires,
extras_require=extras_require,
+ python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*',
)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/terminado-0.8.1/terminado/__init__.py
new/terminado-0.8.2/terminado/__init__.py
--- old/terminado-0.8.1/terminado/__init__.py 2017-11-28 11:58:43.878768400
+0100
+++ new/terminado-0.8.2/terminado/__init__.py 2019-03-28 19:02:25.914608700
+0100
@@ -12,4 +12,4 @@
# Prevent a warning about no attached handlers in Python 2
logging.getLogger(__name__).addHandler(logging.NullHandler())
-__version__ = '0.8.1'
+__version__ = '0.8.2'
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/terminado-0.8.1/terminado/management.py
new/terminado-0.8.2/terminado/management.py
--- old/terminado-0.8.1/terminado/management.py 2017-11-27 03:10:10.397086600
+0100
+++ new/terminado-0.8.2/terminado/management.py 2019-03-28 18:58:43.420910400
+0100
@@ -86,7 +86,7 @@
signal.SIGTERM]
loop = IOLoop.current()
- sleep = lambda : gen.Task(loop.add_timeout, loop.time() +
self.ptyproc.delayafterterminate)
+ sleep = lambda : gen.sleep(self.ptyproc.delayafterterminate)
if not self.ptyproc.isalive():
raise gen.Return(True)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/terminado-0.8.1/terminado/websocket.py
new/terminado-0.8.2/terminado/websocket.py
--- old/terminado-0.8.1/terminado/websocket.py 2017-11-27 03:10:10.398132800
+0100
+++ new/terminado-0.8.2/terminado/websocket.py 2019-03-28 18:58:42.432880000
+0100
@@ -100,3 +100,4 @@
"""
self.send_json_message(['disconnect', 1])
self.close()
+ self.terminal = None