Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package python-mkdocs-material for 
openSUSE:Factory checked in at 2026-02-26 19:00:05
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-mkdocs-material (Old)
 and      /work/SRC/openSUSE:Factory/.python-mkdocs-material.new.29461 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "python-mkdocs-material"

Thu Feb 26 19:00:05 2026 rev:100 rq:1335288 version:9.7.3

Changes:
--------
--- 
/work/SRC/openSUSE:Factory/python-mkdocs-material/python-mkdocs-material.changes
    2026-02-20 17:43:49.822418473 +0100
+++ 
/work/SRC/openSUSE:Factory/.python-mkdocs-material.new.29461/python-mkdocs-material.changes
 2026-02-26 19:02:06.911224553 +0100
@@ -1,0 +2,6 @@
+Thu Feb 26 06:42:24 UTC 2026 - Johannes Kastl 
<[email protected]>
+
+- update to 9.7.3:
+  * Fixed #8567: Print MkDocs 2.0 incompatibility warning to stderr
+
+-------------------------------------------------------------------

Old:
----
  mkdocs_material-9.7.2.tar.gz

New:
----
  mkdocs_material-9.7.3.tar.gz

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

Other differences:
------------------
++++++ python-mkdocs-material.spec ++++++
--- /var/tmp/diff_new_pack.GJViLt/_old  2026-02-26 19:02:07.623254306 +0100
+++ /var/tmp/diff_new_pack.GJViLt/_new  2026-02-26 19:02:07.623254306 +0100
@@ -18,7 +18,7 @@
 
 %{?sle15_python_module_pythons}
 Name:           python-mkdocs-material
-Version:        9.7.2
+Version:        9.7.3
 Release:        0
 Summary:        Material theme for mkdocs
 License:        MIT

++++++ mkdocs_material-9.7.2.tar.gz -> mkdocs_material-9.7.3.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mkdocs_material-9.7.2/PKG-INFO 
new/mkdocs_material-9.7.3/PKG-INFO
--- old/mkdocs_material-9.7.2/PKG-INFO  2020-02-02 01:00:00.000000000 +0100
+++ new/mkdocs_material-9.7.3/PKG-INFO  2020-02-02 01:00:00.000000000 +0100
@@ -1,6 +1,6 @@
 Metadata-Version: 2.4
 Name: mkdocs-material
-Version: 9.7.2
+Version: 9.7.3
 Summary: Documentation that simply works
 Project-URL: Homepage, https://squidfunk.github.io/mkdocs-material/
 Project-URL: Bug Tracker, https://github.com/squidfunk/mkdocs-material/issues
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mkdocs_material-9.7.2/material/__init__.py 
new/mkdocs_material-9.7.3/material/__init__.py
--- old/mkdocs_material-9.7.2/material/__init__.py      2020-02-02 
01:00:00.000000000 +0100
+++ new/mkdocs_material-9.7.3/material/__init__.py      2020-02-02 
01:00:00.000000000 +0100
@@ -18,4 +18,4 @@
 # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
 # IN THE SOFTWARE.
 
-__version__ = "9.7.2"
+__version__ = "9.7.3"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mkdocs_material-9.7.2/material/plugins/__init__.py 
new/mkdocs_material-9.7.3/material/plugins/__init__.py
--- old/mkdocs_material-9.7.2/material/plugins/__init__.py      2020-02-02 
01:00:00.000000000 +0100
+++ new/mkdocs_material-9.7.3/material/plugins/__init__.py      2020-02-02 
01:00:00.000000000 +0100
@@ -18,17 +18,21 @@
 # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
 # IN THE SOFTWARE.
 
-from os import getenv
 from colorama import Fore, Style
+from os import getenv
+from sys import stderr
 
 # Silence this warning with NO_MKDOCS_2_WARNING=1
 if not getenv("NO_MKDOCS_2_WARNING"):
-    print("")
-    print(f"{Fore.RED} │ ⚠ WARNING – MkDocs 2.0 is incompatible with Material 
for MkDocs{Style.RESET_ALL}")
-    print(f"{Fore.RED} │ {Style.RESET_ALL}")
-    print(f"{Fore.RED} │ {Style.RESET_ALL}  MkDocs 1.x is unmaintained. We 
recommend switching to Zensical, our")
-    print(f"{Fore.RED} │ {Style.RESET_ALL}  new static site generator, as soon 
as possible. We're providing an")
-    print(f"{Fore.RED} │ {Style.RESET_ALL}  analysis of the situation in this 
article:")
-    print(f"{Fore.RED} │ {Style.RESET_ALL}  ")
-    print(f"{Fore.RED} │ {Style.RESET_ALL}  
\033[4mhttps://squidfunk.github.io/mkdocs-material/blog/2026/02/18/mkdocs-2.0/{Style.RESET_ALL}";)
-    print(f"{Style.RESET_ALL}")
+    print(
+        "\n"
+        f"{Fore.RED} │ ⚠ WARNING – MkDocs 2.0 is incompatible with Material 
for MkDocs{Style.RESET_ALL}\n"
+        f"{Fore.RED} │ {Style.RESET_ALL}\n"
+        f"{Fore.RED} │ {Style.RESET_ALL}  MkDocs 1.x is unmaintained. We 
recommend switching to Zensical, our\n"
+        f"{Fore.RED} │ {Style.RESET_ALL}  new static site generator, as soon 
as possible. We're providing an\n"
+        f"{Fore.RED} │ {Style.RESET_ALL}  analysis of the situation in this 
article:\n"
+        f"{Fore.RED} │ {Style.RESET_ALL}  \n"
+        f"{Fore.RED} │ {Style.RESET_ALL}  
\033[4mhttps://squidfunk.github.io/mkdocs-material/blog/2026/02/18/mkdocs-2.0/{Style.RESET_ALL}\n";
+        f"{Style.RESET_ALL}",
+        file=stderr
+    )
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mkdocs_material-9.7.2/material/templates/base.html 
new/mkdocs_material-9.7.3/material/templates/base.html
--- old/mkdocs_material-9.7.2/material/templates/base.html      2020-02-02 
01:00:00.000000000 +0100
+++ new/mkdocs_material-9.7.3/material/templates/base.html      2020-02-02 
01:00:00.000000000 +0100
@@ -37,7 +37,7 @@
         <link rel="alternate" type="application/rss+xml" title="{{ 
lang.t('rss.updated') }}" href="{{ 'feed_rss_updated.xml' | url }}">
       {% endif %}
       <link rel="icon" href="{{ config.theme.favicon | url }}">
-      <meta name="generator" content="mkdocs-{{ mkdocs_version }}, 
mkdocs-material-9.7.2">
+      <meta name="generator" content="mkdocs-{{ mkdocs_version }}, 
mkdocs-material-9.7.3">
     {% endblock %}
     {% block htmltitle %}
       {% if page.meta and page.meta.title %}
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mkdocs_material-9.7.2/package.json 
new/mkdocs_material-9.7.3/package.json
--- old/mkdocs_material-9.7.2/package.json      2020-02-02 01:00:00.000000000 
+0100
+++ new/mkdocs_material-9.7.3/package.json      2020-02-02 01:00:00.000000000 
+0100
@@ -1,6 +1,6 @@
 {
   "name": "mkdocs-material",
-  "version": "9.7.2",
+  "version": "9.7.3",
   "description": "Documentation that simply works",
   "keywords": [
     "mkdocs",

Reply via email to