Hello community,
here is the log from the commit of package python-subprocrunner for
openSUSE:Factory checked in at 2020-04-07 10:28:23
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-subprocrunner (Old)
and /work/SRC/openSUSE:Factory/.python-subprocrunner.new.3248 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-subprocrunner"
Tue Apr 7 10:28:23 2020 rev:5 rq:791506 version:1.2.1
Changes:
--------
---
/work/SRC/openSUSE:Factory/python-subprocrunner/python-subprocrunner.changes
2020-03-23 12:51:01.723974057 +0100
+++
/work/SRC/openSUSE:Factory/.python-subprocrunner.new.3248/python-subprocrunner.changes
2020-04-07 10:28:42.562322011 +0200
@@ -1,0 +2,6 @@
+Sat Apr 4 11:15:24 UTC 2020 - Martin Hauke <[email protected]>
+
+- version update to 1.2.1
+ * no upstream changelog this time
+
+-------------------------------------------------------------------
Old:
----
subprocrunner-1.2.0.tar.gz
New:
----
subprocrunner-1.2.1.tar.gz
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ python-subprocrunner.spec ++++++
--- /var/tmp/diff_new_pack.ELaMlu/_old 2020-04-07 10:28:43.094322603 +0200
+++ /var/tmp/diff_new_pack.ELaMlu/_new 2020-04-07 10:28:43.094322603 +0200
@@ -19,7 +19,7 @@
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
%define skip_python2 1
Name: python-subprocrunner
-Version: 1.2.0
+Version: 1.2.1
Release: 0
Summary: A Python wrapper library for subprocess module
License: MIT
@@ -30,14 +30,14 @@
BuildRequires: fdupes
BuildRequires: python-rpm-macros
# SECTION test requirements
-BuildRequires: %{python_module loguru}
-BuildRequires: %{python_module mbstrdecoder >= 0.8.0}
+BuildRequires: %{python_module loguru >= 0.4.1}
+BuildRequires: %{python_module mbstrdecoder >= 1.0.0}
BuildRequires: %{python_module pytest-runner}
BuildRequires: %{python_module six}
BuildRequires: %{python_module typepy}
# /SECTION
-Requires: python-loguru
-Requires: python-mbstrdecoder >= 0.8.0
+Requires: python-loguru >= 0.4.1
+Requires: python-mbstrdecoder >= 1.0.0
Requires: python-six
Requires: python-typepy
BuildArch: noarch
++++++ subprocrunner-1.2.0.tar.gz -> subprocrunner-1.2.1.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/subprocrunner-1.2.0/PKG-INFO
new/subprocrunner-1.2.1/PKG-INFO
--- old/subprocrunner-1.2.0/PKG-INFO 2020-03-20 15:43:11.178614100 +0100
+++ new/subprocrunner-1.2.1/PKG-INFO 2020-04-04 11:26:26.678303700 +0200
@@ -1,6 +1,6 @@
Metadata-Version: 2.1
Name: subprocrunner
-Version: 1.2.0
+Version: 1.2.1
Summary: A Python wrapper library for subprocess module.
Home-page: https://github.com/thombashi/subprocrunner
Author: Tsuyoshi Hombashi
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/subprocrunner-1.2.0/requirements/requirements.txt
new/subprocrunner-1.2.1/requirements/requirements.txt
--- old/subprocrunner-1.2.0/requirements/requirements.txt 2020-01-04
13:33:34.000000000 +0100
+++ new/subprocrunner-1.2.1/requirements/requirements.txt 2020-04-04
11:00:28.000000000 +0200
@@ -1 +1 @@
-mbstrdecoder>=0.8.3,<1.0.0
+mbstrdecoder>=1.0.0,<2
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/subprocrunner-1.2.0/setup.py
new/subprocrunner-1.2.1/setup.py
--- old/subprocrunner-1.2.0/setup.py 2020-03-20 13:38:54.000000000 +0100
+++ new/subprocrunner-1.2.1/setup.py 2020-04-04 11:18:47.000000000 +0200
@@ -2,9 +2,8 @@
.. codeauthor:: Tsuyoshi Hombashi <[email protected]>
"""
-
import os.path
-from typing import Dict, List # noqa
+from typing import Dict
import setuptools
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/subprocrunner-1.2.0/subprocrunner/__version__.py
new/subprocrunner-1.2.1/subprocrunner/__version__.py
--- old/subprocrunner-1.2.0/subprocrunner/__version__.py 2020-03-20
15:38:24.000000000 +0100
+++ new/subprocrunner-1.2.1/subprocrunner/__version__.py 2020-04-04
11:24:20.000000000 +0200
@@ -1,6 +1,6 @@
__author__ = "Tsuyoshi Hombashi"
__copyright__ = "Copyright 2016, {}".format(__author__)
__license__ = "MIT License"
-__version__ = "1.2.0"
+__version__ = "1.2.1"
__maintainer__ = __author__
__email__ = "[email protected]"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/subprocrunner-1.2.0/subprocrunner/_which.py
new/subprocrunner-1.2.1/subprocrunner/_which.py
--- old/subprocrunner-1.2.0/subprocrunner/_which.py 2020-03-20
15:07:37.000000000 +0100
+++ new/subprocrunner-1.2.1/subprocrunner/_which.py 2020-04-02
14:47:04.000000000 +0200
@@ -41,7 +41,7 @@
def verify(self) -> None:
if not self.is_exist():
raise CommandError(
- "command not found: '{}'".format(self.command),
cmd=self.command, errno=errno.ENOENT
+ "command not found: {}".format(self.command),
cmd=self.command, errno=errno.ENOENT
)
def abspath(self) -> Optional[str]:
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/subprocrunner-1.2.0/subprocrunner.egg-info/PKG-INFO
new/subprocrunner-1.2.1/subprocrunner.egg-info/PKG-INFO
--- old/subprocrunner-1.2.0/subprocrunner.egg-info/PKG-INFO 2020-03-20
15:43:11.000000000 +0100
+++ new/subprocrunner-1.2.1/subprocrunner.egg-info/PKG-INFO 2020-04-04
11:26:26.000000000 +0200
@@ -1,6 +1,6 @@
Metadata-Version: 2.1
Name: subprocrunner
-Version: 1.2.0
+Version: 1.2.1
Summary: A Python wrapper library for subprocess module.
Home-page: https://github.com/thombashi/subprocrunner
Author: Tsuyoshi Hombashi
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/subprocrunner-1.2.0/subprocrunner.egg-info/requires.txt
new/subprocrunner-1.2.1/subprocrunner.egg-info/requires.txt
--- old/subprocrunner-1.2.0/subprocrunner.egg-info/requires.txt 2020-03-20
15:43:11.000000000 +0100
+++ new/subprocrunner-1.2.1/subprocrunner.egg-info/requires.txt 2020-04-04
11:26:26.000000000 +0200
@@ -1,5 +1,5 @@
setuptools>=38.3.0
-mbstrdecoder<1.0.0,>=0.8.3
+mbstrdecoder<2,>=1.0.0
[logging]
loguru<1,>=0.4.1
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/subprocrunner-1.2.0/tox.ini
new/subprocrunner-1.2.1/tox.ini
--- old/subprocrunner-1.2.0/tox.ini 2020-03-20 04:12:39.000000000 +0100
+++ new/subprocrunner-1.2.1/tox.ini 2020-04-04 03:38:04.000000000 +0200
@@ -26,7 +26,6 @@
python setup.py clean --all
[testenv:clean]
-basepython = python3.8
deps =
cleanpy
commands =