Hello community,

here is the log from the commit of package python-parallax for openSUSE:Factory 
checked in at 2018-06-29 22:36:27
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-parallax (Old)
 and      /work/SRC/openSUSE:Factory/.python-parallax.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "python-parallax"

Fri Jun 29 22:36:27 2018 rev:10 rq:619676 version:1.0.4

Changes:
--------
--- /work/SRC/openSUSE:Factory/python-parallax/python-parallax.changes  
2017-11-04 19:29:11.021352363 +0100
+++ /work/SRC/openSUSE:Factory/.python-parallax.new/python-parallax.changes     
2018-06-29 22:36:35.357991985 +0200
@@ -1,0 +2,6 @@
+Thu Jun 28 14:32:46 UTC 2018 - [email protected]
+
+- Release 1.0.4
+- Fix super call for python2 (bsc#1099514) 
+
+-------------------------------------------------------------------

Old:
----
  parallax-1.0.3.tar.gz

New:
----
  parallax-1.0.4.tar.gz

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ python-parallax.spec ++++++
--- /var/tmp/diff_new_pack.t59wYW/_old  2018-06-29 22:36:38.813988985 +0200
+++ /var/tmp/diff_new_pack.t59wYW/_new  2018-06-29 22:36:38.817988981 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package python-parallax
 #
-# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2018 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
@@ -19,13 +19,13 @@
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 
 Name:           python-parallax
-Version:        1.0.3
+Version:        1.0.4
 Release:        0
 Summary:        Execute commands and copy files over SSH to multiple machines 
at once
 License:        BSD-3-Clause
 Group:          Development/Languages/Python
 Url:            https://github.com/krig/parallax/
-Source:         
https://files.pythonhosted.org/packages/1c/21/acd162b334561a1989310d149407b7d6cd2ac7d51b7fae35cd897ed72ef7/parallax-%{version}.tar.gz
+Source:         
https://files.pythonhosted.org/packages/48/d9/2a5912db7d0bdc26972ecdb7bae50844c77ed098f63295c0283d102d6b0e/parallax-%{version}.tar.gz
 BuildRequires:  %{python_module setuptools}
 BuildRequires:  fdupes
 BuildRequires:  python-rpm-macros
@@ -67,7 +67,8 @@
 
 %files %{python_files}
 %defattr(-,root,root,-)
-%doc AUTHORS README.md COPYING
+%doc AUTHORS README.md
+%license COPYING
 %{python_sitelib}/parallax
 %{python_sitelib}/parallax-%{version}*.egg-info
 %python_alternative %{_bindir}/parallax-askpass

++++++ parallax-1.0.3.tar.gz -> parallax-1.0.4.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/parallax-1.0.3/PKG-INFO new/parallax-1.0.4/PKG-INFO
--- old/parallax-1.0.3/PKG-INFO 2017-11-03 09:07:18.000000000 +0100
+++ new/parallax-1.0.4/PKG-INFO 2018-06-28 16:28:34.000000000 +0200
@@ -1,12 +1,11 @@
 Metadata-Version: 1.1
 Name: parallax
-Version: 1.0.3
+Version: 1.0.4
 Summary: Execute commands and copy files over SSH to multiple machines at once
 Home-page: https://github.com/krig/parallax/
 Author: Kristoffer Gronlund
 Author-email: [email protected]
 License: BSD
-Description-Content-Type: UNKNOWN
 Description: Parallax SSH provides an interface to executing commands on 
multiple
         nodes at once using SSH. It also provides commands for sending and 
receiving files to
         multiple nodes using SCP.
@@ -24,6 +23,8 @@
 Classifier: Programming Language :: Python :: 3.2
 Classifier: Programming Language :: Python :: 3.3
 Classifier: Programming Language :: Python :: 3.4
+Classifier: Programming Language :: Python :: 3.5
+Classifier: Programming Language :: Python :: 3.6
 Classifier: Topic :: Software Development :: Libraries :: Python Modules
 Classifier: Topic :: System :: Clustering
 Classifier: Topic :: System :: Networking
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/parallax-1.0.3/parallax/__init__.py 
new/parallax-1.0.4/parallax/__init__.py
--- old/parallax-1.0.3/parallax/__init__.py     2017-11-03 08:59:18.000000000 
+0100
+++ new/parallax-1.0.4/parallax/__init__.py     2018-06-28 16:25:14.000000000 
+0200
@@ -61,7 +61,7 @@
     that host.
     """
     def __init__(self, msg, task):
-        super().__init__(self)
+        super(BaseException, self).__init__()
         self.msg = msg
         self.task = task
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/parallax-1.0.3/parallax/version.py 
new/parallax-1.0.4/parallax/version.py
--- old/parallax-1.0.3/parallax/version.py      2017-11-03 09:02:03.000000000 
+0100
+++ new/parallax-1.0.4/parallax/version.py      2018-06-28 16:25:52.000000000 
+0200
@@ -1 +1 @@
-VERSION = '1.0.3'
+VERSION = '1.0.4'
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/parallax-1.0.3/parallax.egg-info/PKG-INFO 
new/parallax-1.0.4/parallax.egg-info/PKG-INFO
--- old/parallax-1.0.3/parallax.egg-info/PKG-INFO       2017-11-03 
09:07:18.000000000 +0100
+++ new/parallax-1.0.4/parallax.egg-info/PKG-INFO       2018-06-28 
16:28:34.000000000 +0200
@@ -1,12 +1,11 @@
 Metadata-Version: 1.1
 Name: parallax
-Version: 1.0.3
+Version: 1.0.4
 Summary: Execute commands and copy files over SSH to multiple machines at once
 Home-page: https://github.com/krig/parallax/
 Author: Kristoffer Gronlund
 Author-email: [email protected]
 License: BSD
-Description-Content-Type: UNKNOWN
 Description: Parallax SSH provides an interface to executing commands on 
multiple
         nodes at once using SSH. It also provides commands for sending and 
receiving files to
         multiple nodes using SCP.
@@ -24,6 +23,8 @@
 Classifier: Programming Language :: Python :: 3.2
 Classifier: Programming Language :: Python :: 3.3
 Classifier: Programming Language :: Python :: 3.4
+Classifier: Programming Language :: Python :: 3.5
+Classifier: Programming Language :: Python :: 3.6
 Classifier: Topic :: Software Development :: Libraries :: Python Modules
 Classifier: Topic :: System :: Clustering
 Classifier: Topic :: System :: Networking
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/parallax-1.0.3/setup.py new/parallax-1.0.4/setup.py
--- old/parallax-1.0.3/setup.py 2017-08-28 14:47:56.000000000 +0200
+++ new/parallax-1.0.4/setup.py 2017-11-03 09:10:17.000000000 +0100
@@ -28,6 +28,8 @@
           "Programming Language :: Python :: 3.2",
           "Programming Language :: Python :: 3.3",
           "Programming Language :: Python :: 3.4",
+          "Programming Language :: Python :: 3.5",
+          "Programming Language :: Python :: 3.6",
           "Topic :: Software Development :: Libraries :: Python Modules",
           "Topic :: System :: Clustering",
           "Topic :: System :: Networking",


Reply via email to