Script 'mail_helper' called by obssrc
Hello community,
here is the log from the commit of package python-ansicolor for
openSUSE:Factory checked in at 2026-02-17 16:47:12
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-ansicolor (Old)
and /work/SRC/openSUSE:Factory/.python-ansicolor.new.1977 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-ansicolor"
Tue Feb 17 16:47:12 2026 rev:7 rq:1333392 version:0.3.3
Changes:
--------
--- /work/SRC/openSUSE:Factory/python-ansicolor/python-ansicolor.changes
2025-05-13 20:09:47.621726210 +0200
+++
/work/SRC/openSUSE:Factory/.python-ansicolor.new.1977/python-ansicolor.changes
2026-02-17 16:47:49.108613478 +0100
@@ -1,0 +2,6 @@
+Mon Feb 16 16:42:09 UTC 2026 - Dirk Müller <[email protected]>
+
+- update to 0.3.3:
+ * Fixed SyntaxWarning for :func:`ansicolor.strip_escapes`.
+
+-------------------------------------------------------------------
Old:
----
ansicolor-0.3.2.tar.gz
New:
----
ansicolor-0.3.3.tar.gz
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ python-ansicolor.spec ++++++
--- /var/tmp/diff_new_pack.Z6MeS0/_old 2026-02-17 16:47:51.368708309 +0100
+++ /var/tmp/diff_new_pack.Z6MeS0/_new 2026-02-17 16:47:51.372708477 +0100
@@ -1,7 +1,7 @@
#
# spec file for package python-ansicolor
#
-# Copyright (c) 2025 SUSE LLC
+# Copyright (c) 2026 SUSE LLC and contributors
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@@ -19,7 +19,7 @@
# For license file
%define tag a5a5c31dc6de5c864a0c5684ae326972573a712b
Name: python-ansicolor
-Version: 0.3.2
+Version: 0.3.3
Release: 0
Summary: Python module for ANSI color output and colored highlighting
and diffing
License: Apache-2.0
++++++ ansicolor-0.3.2.tar.gz -> ansicolor-0.3.3.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/ansicolor-0.3.2/LICENSE new/ansicolor-0.3.3/LICENSE
--- old/ansicolor-0.3.2/LICENSE 1970-01-01 01:00:00.000000000 +0100
+++ new/ansicolor-0.3.3/LICENSE 2021-05-05 08:41:09.000000000 +0200
@@ -0,0 +1,13 @@
+Copyright 2008-2021 Martin Matusiak
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/ansicolor-0.3.2/PKG-INFO new/ansicolor-0.3.3/PKG-INFO
--- old/ansicolor-0.3.2/PKG-INFO 2021-05-05 09:04:01.884181300 +0200
+++ new/ansicolor-0.3.3/PKG-INFO 2026-01-30 23:23:53.906753800 +0100
@@ -1,16 +1,20 @@
-Metadata-Version: 1.1
+Metadata-Version: 2.4
Name: ansicolor
-Version: 0.3.2
+Version: 0.3.3
Summary: A library to produce ansi color output and colored highlighting and
diffing
Home-page: https://github.com/numerodix/ansicolor
Author: Martin Matusiak
Author-email: [email protected]
-License: UNKNOWN
-Description: UNKNOWN
-Platform: UNKNOWN
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: Implementation :: CPython
+License-File: LICENSE
+Dynamic: author
+Dynamic: author-email
+Dynamic: classifier
+Dynamic: home-page
+Dynamic: license-file
+Dynamic: summary
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/ansicolor-0.3.2/README.rst
new/ansicolor-0.3.3/README.rst
--- old/ansicolor-0.3.2/README.rst 2021-05-05 08:56:26.000000000 +0200
+++ new/ansicolor-0.3.3/README.rst 2021-05-05 10:28:58.000000000 +0200
@@ -75,6 +75,12 @@
Running unit tests
^^^^^^^^^^^^^^^^^^
+The tests expect the environment variable ``TERM`` to be set, and to a value
+that is not ``dumb``. If this is not the case tests will fail.
+
+The canonical setting is ``TERM=xterm`` to signal that a terminal supports
+ANSI control codes just like ``xterm`` does.
+
.. code:: bash
$ py.test
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/ansicolor-0.3.2/ansicolor/__init__.py
new/ansicolor-0.3.3/ansicolor/__init__.py
--- old/ansicolor-0.3.2/ansicolor/__init__.py 2021-05-05 09:03:29.000000000
+0200
+++ new/ansicolor-0.3.3/ansicolor/__init__.py 2026-01-30 23:20:31.000000000
+0100
@@ -55,5 +55,5 @@
]
__major_version__ = "0.3"
-__release__ = "2"
+__release__ = "3"
__version__ = "%s.%s" % (__major_version__, __release__)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/ansicolor-0.3.2/ansicolor/ansicolor.py
new/ansicolor-0.3.3/ansicolor/ansicolor.py
--- old/ansicolor-0.3.2/ansicolor/ansicolor.py 2021-05-05 09:01:20.000000000
+0200
+++ new/ansicolor-0.3.3/ansicolor/ansicolor.py 2026-01-30 23:18:32.000000000
+0100
@@ -504,7 +504,7 @@
:rtype: string
"""
- return re.sub("\033\[(?:(?:[0-9]*;)*)(?:[0-9]*m)", "", s)
+ return re.sub(r"\033\[(?:(?:[0-9]*;)*)(?:[0-9]*m)", "", s)
# Output functions
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/ansicolor-0.3.2/ansicolor.egg-info/PKG-INFO
new/ansicolor-0.3.3/ansicolor.egg-info/PKG-INFO
--- old/ansicolor-0.3.2/ansicolor.egg-info/PKG-INFO 2021-05-05
09:04:01.000000000 +0200
+++ new/ansicolor-0.3.3/ansicolor.egg-info/PKG-INFO 2026-01-30
23:23:53.000000000 +0100
@@ -1,16 +1,20 @@
-Metadata-Version: 1.1
+Metadata-Version: 2.4
Name: ansicolor
-Version: 0.3.2
+Version: 0.3.3
Summary: A library to produce ansi color output and colored highlighting and
diffing
Home-page: https://github.com/numerodix/ansicolor
Author: Martin Matusiak
Author-email: [email protected]
-License: UNKNOWN
-Description: UNKNOWN
-Platform: UNKNOWN
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: Implementation :: CPython
+License-File: LICENSE
+Dynamic: author
+Dynamic: author-email
+Dynamic: classifier
+Dynamic: home-page
+Dynamic: license-file
+Dynamic: summary
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/ansicolor-0.3.2/ansicolor.egg-info/SOURCES.txt
new/ansicolor-0.3.3/ansicolor.egg-info/SOURCES.txt
--- old/ansicolor-0.3.2/ansicolor.egg-info/SOURCES.txt 2021-05-05
09:04:01.000000000 +0200
+++ new/ansicolor-0.3.3/ansicolor.egg-info/SOURCES.txt 2026-01-30
23:23:53.000000000 +0100
@@ -1,3 +1,4 @@
+LICENSE
README.rst
setup.cfg
setup.py