Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package python-findpython for 
openSUSE:Factory checked in at 2026-05-04 12:54:24
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-findpython (Old)
 and      /work/SRC/openSUSE:Factory/.python-findpython.new.30200 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "python-findpython"

Mon May  4 12:54:24 2026 rev:15 rq:1350555 version:0.8.0

Changes:
--------
--- /work/SRC/openSUSE:Factory/python-findpython/python-findpython.changes      
2025-12-10 15:31:28.972662153 +0100
+++ 
/work/SRC/openSUSE:Factory/.python-findpython.new.30200/python-findpython.changes
   2026-05-04 12:57:56.772416872 +0200
@@ -1,0 +2,8 @@
+Sun May  3 18:00:09 UTC 2026 - Dirk Müller <[email protected]>
+
+- update to 0.8.0:
+  * Correct script execution command in _run_script function  - 
+  * Update required Python version to 3.9 in pyproject.toml and
+    streamline CI configuration
+
+-------------------------------------------------------------------

Old:
----
  findpython-0.7.1.tar.gz

New:
----
  findpython-0.8.0.tar.gz

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

Other differences:
------------------
++++++ python-findpython.spec ++++++
--- /var/tmp/diff_new_pack.qIXj8G/_old  2026-05-04 12:57:57.244436299 +0200
+++ /var/tmp/diff_new_pack.qIXj8G/_new  2026-05-04 12:57:57.248436464 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package python-findpython
 #
-# Copyright (c) 2025 SUSE LLC and contributors
+# 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
@@ -18,7 +18,7 @@
 
 %{?sle15_python_module_pythons}
 Name:           python-findpython
-Version:        0.7.1
+Version:        0.8.0
 Release:        0
 Summary:        Utility to find python versions on your system
 License:        MIT

++++++ findpython-0.7.1.tar.gz -> findpython-0.8.0.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/findpython-0.7.1/PKG-INFO 
new/findpython-0.8.0/PKG-INFO
--- old/findpython-0.7.1/PKG-INFO       1970-01-01 01:00:00.000000000 +0100
+++ new/findpython-0.8.0/PKG-INFO       1970-01-01 01:00:00.000000000 +0100
@@ -1,6 +1,6 @@
 Metadata-Version: 2.1
 Name: findpython
-Version: 0.7.1
+Version: 0.8.0
 Summary: A utility to find python versions on your system
 Author-Email: Frost Ming <[email protected]>
 License: MIT
@@ -12,7 +12,7 @@
 Classifier: Programming Language :: Python :: 3.12
 Classifier: Programming Language :: Python :: 3.13
 Project-URL: Homepage, https://github.com/frostming/findpython
-Requires-Python: >=3.8
+Requires-Python: >=3.9
 Requires-Dist: packaging>=20
 Requires-Dist: platformdirs>=4.3.6
 Description-Content-Type: text/markdown
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/findpython-0.7.1/pyproject.toml 
new/findpython-0.8.0/pyproject.toml
--- old/findpython-0.7.1/pyproject.toml 2025-11-13 09:34:30.793042400 +0100
+++ new/findpython-0.8.0/pyproject.toml 2026-04-30 05:18:56.615978200 +0200
@@ -8,7 +8,7 @@
     "packaging>=20",
     "platformdirs>=4.3.6",
 ]
-requires-python = ">=3.8"
+requires-python = ">=3.9"
 readme = "README.md"
 dynamic = []
 classifiers = [
@@ -20,7 +20,7 @@
     "Programming Language :: Python :: 3.12",
     "Programming Language :: Python :: 3.13",
 ]
-version = "0.7.1"
+version = "0.8.0"
 
 [project.license]
 text = "MIT"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/findpython-0.7.1/src/findpython/__version__.py 
new/findpython-0.8.0/src/findpython/__version__.py
--- old/findpython-0.7.1/src/findpython/__version__.py  2025-11-13 
09:34:30.790042400 +0100
+++ new/findpython-0.8.0/src/findpython/__version__.py  2026-04-30 
05:18:56.613227100 +0200
@@ -1 +1 @@
-__version__ = "0.7.1"
+__version__ = "0.8.0"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/findpython-0.7.1/src/findpython/python.py 
new/findpython-0.8.0/src/findpython/python.py
--- old/findpython-0.7.1/src/findpython/python.py       2025-11-13 
09:34:20.815089700 +0100
+++ new/findpython-0.8.0/src/findpython/python.py       2026-04-30 
05:18:46.441357000 +0200
@@ -18,7 +18,7 @@
 @lru_cache(maxsize=1024)
 def _run_script(executable: str, script: str, timeout: float | None = None) -> 
str:
     """Run a script and return the output."""
-    command = [executable, "-EsSc", script]
+    command = [executable, "-Ic", script]
     logger.debug("Running script: %s", command)
     return subprocess.run(
         command,

Reply via email to