Hello community,
here is the log from the commit of package python-colorlog for openSUSE:Factory
checked in at 2020-01-19 20:56:31
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-colorlog (Old)
and /work/SRC/openSUSE:Factory/.python-colorlog.new.26092 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-colorlog"
Sun Jan 19 20:56:31 2020 rev:5 rq:765458 version:4.1.0
Changes:
--------
--- /work/SRC/openSUSE:Factory/python-colorlog/python-colorlog.changes
2019-10-16 09:14:14.031630162 +0200
+++
/work/SRC/openSUSE:Factory/.python-colorlog.new.26092/python-colorlog.changes
2020-01-19 20:58:08.788072592 +0100
@@ -1,0 +2,11 @@
+Sat Jan 18 09:34:54 UTC 2020 - Antonio Larrosa <[email protected]>
+
+- Update to 4.1.0:
+ * Fix for LevelFormatter in Python >= 3.8
+ * Wrapped lines to match the rest of the code
+ * Add check if fmt is dict, missed an elif
+ * Test only on all currently supported python versions
+ * Suppress docstring section related errors
+ * Update classifiers to reflect supported versions of Python
+
+-------------------------------------------------------------------
Old:
----
colorlog-4.0.2.tar.gz
New:
----
colorlog-4.1.0.tar.gz
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ python-colorlog.spec ++++++
--- /var/tmp/diff_new_pack.jK133g/_old 2020-01-19 20:58:09.316072870 +0100
+++ /var/tmp/diff_new_pack.jK133g/_new 2020-01-19 20:58:09.320072872 +0100
@@ -1,7 +1,7 @@
#
# spec file for package python-colorlog
#
-# 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
@@ -18,7 +18,7 @@
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
Name: python-colorlog
-Version: 4.0.2
+Version: 4.1.0
Release: 0
Summary: Log formatting with colors
License: MIT
++++++ colorlog-4.0.2.tar.gz -> colorlog-4.1.0.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/colorlog-4.0.2/PKG-INFO new/colorlog-4.1.0/PKG-INFO
--- old/colorlog-4.0.2/PKG-INFO 2018-12-14 17:45:58.000000000 +0100
+++ new/colorlog-4.1.0/PKG-INFO 2020-01-02 13:25:45.000000000 +0100
@@ -1,6 +1,6 @@
Metadata-Version: 2.1
Name: colorlog
-Version: 4.0.2
+Version: 4.1.0
Summary: Log formatting with colors!
Home-page: https://github.com/borntyping/python-colorlog
Author: Sam Clements
@@ -261,8 +261,10 @@
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
-Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
+Classifier: Programming Language :: Python :: 3.6
+Classifier: Programming Language :: Python :: 3.7
+Classifier: Programming Language :: Python :: 3.8
Classifier: Topic :: Terminals
Classifier: Topic :: Utilities
Description-Content-Type: text/markdown
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/colorlog-4.0.2/colorlog/colorlog.py
new/colorlog-4.1.0/colorlog/colorlog.py
--- old/colorlog-4.0.2/colorlog/colorlog.py 2018-12-14 17:33:22.000000000
+0100
+++ new/colorlog-4.1.0/colorlog/colorlog.py 2020-01-02 11:11:35.000000000
+0100
@@ -87,7 +87,11 @@
else:
fmt = default_formats['%']
- if sys.version_info > (3, 2):
+ if sys.version_info > (3, 8) and isinstance(self, LevelFormatter) \
+ and isinstance(fmt, dict):
+ super(ColoredFormatter, self).__init__(
+ fmt, datefmt, style, validate=False)
+ elif sys.version_info > (3, 2):
super(ColoredFormatter, self).__init__(fmt, datefmt, style)
elif sys.version_info > (2, 7):
super(ColoredFormatter, self).__init__(fmt, datefmt)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/colorlog-4.0.2/colorlog.egg-info/PKG-INFO
new/colorlog-4.1.0/colorlog.egg-info/PKG-INFO
--- old/colorlog-4.0.2/colorlog.egg-info/PKG-INFO 2018-12-14
17:45:58.000000000 +0100
+++ new/colorlog-4.1.0/colorlog.egg-info/PKG-INFO 2020-01-02
13:25:45.000000000 +0100
@@ -1,6 +1,6 @@
Metadata-Version: 2.1
Name: colorlog
-Version: 4.0.2
+Version: 4.1.0
Summary: Log formatting with colors!
Home-page: https://github.com/borntyping/python-colorlog
Author: Sam Clements
@@ -261,8 +261,10 @@
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
-Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
+Classifier: Programming Language :: Python :: 3.6
+Classifier: Programming Language :: Python :: 3.7
+Classifier: Programming Language :: Python :: 3.8
Classifier: Topic :: Terminals
Classifier: Topic :: Utilities
Description-Content-Type: text/markdown
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/colorlog-4.0.2/setup.cfg new/colorlog-4.1.0/setup.cfg
--- old/colorlog-4.0.2/setup.cfg 2018-12-14 17:45:58.000000000 +0100
+++ new/colorlog-4.1.0/setup.cfg 2020-01-02 13:25:45.000000000 +0100
@@ -6,7 +6,7 @@
[flake8]
exclude = colorlog/tests
-ignore = D203
+ignore = D203,D412,D413
[egg_info]
tag_build =
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/colorlog-4.0.2/setup.py new/colorlog-4.1.0/setup.py
--- old/colorlog-4.0.2/setup.py 2018-12-14 17:45:57.000000000 +0100
+++ new/colorlog-4.1.0/setup.py 2020-01-02 13:22:19.000000000 +0100
@@ -2,7 +2,7 @@
setup(
name='colorlog',
- version='4.0.2',
+ version='4.1.0',
description='Log formatting with colors!',
long_description=open('README.md').read(),
@@ -32,8 +32,10 @@
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
- 'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
+ 'Programming Language :: Python :: 3.6',
+ 'Programming Language :: Python :: 3.7',
+ 'Programming Language :: Python :: 3.8',
'Topic :: Terminals',
'Topic :: Utilities',
],