Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package python-findpython for openSUSE:Leap:16.0 checked in at 2025-07-24 08:30:49 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Leap:16.0/python-findpython (Old) and /work/SRC/openSUSE:Leap:16.0/.python-findpython.new.8875 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-findpython" Thu Jul 24 08:30:49 2025 rev:2 rq:1293689 version:0.6.3 Changes: -------- --- /work/SRC/openSUSE:Leap:16.0/python-findpython/python-findpython.changes 2025-04-25 15:21:38.168091266 +0200 +++ /work/SRC/openSUSE:Leap:16.0/.python-findpython.new.8875/python-findpython.changes 2025-07-24 08:30:52.225480742 +0200 @@ -1,0 +2,7 @@ +Mon Jun 2 17:39:06 UTC 2025 - John Paul Adrian Glaubitz <adrian.glaub...@suse.com> + +- Update to 0.6.3 + * Refresh lockfile and fix deprecation warnings + * Prefer 64bit Python interpreters + +------------------------------------------------------------------- Old: ---- findpython-0.6.2.tar.gz New: ---- findpython-0.6.3.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ python-findpython.spec ++++++ --- /var/tmp/diff_new_pack.tnzgn9/_old 2025-07-24 08:30:52.473491053 +0200 +++ /var/tmp/diff_new_pack.tnzgn9/_new 2025-07-24 08:30:52.473491053 +0200 @@ -1,7 +1,7 @@ # # spec file for package python-findpython # -# Copyright (c) 2024 SUSE LLC +# Copyright (c) 2025 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 @@ %{?sle15_python_module_pythons} Name: python-findpython -Version: 0.6.2 +Version: 0.6.3 Release: 0 Summary: Utility to find python versions on your system License: MIT ++++++ findpython-0.6.2.tar.gz -> findpython-0.6.3.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/findpython-0.6.2/PKG-INFO new/findpython-0.6.3/PKG-INFO --- old/findpython-0.6.2/PKG-INFO 1970-01-01 01:00:00.000000000 +0100 +++ new/findpython-0.6.3/PKG-INFO 1970-01-01 01:00:00.000000000 +0100 @@ -1,6 +1,6 @@ Metadata-Version: 2.1 Name: findpython -Version: 0.6.2 +Version: 0.6.3 Summary: A utility to find python versions on your system Author-Email: Frost Ming <miangh...@gmail.com> License: MIT diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/findpython-0.6.2/pyproject.toml new/findpython-0.6.3/pyproject.toml --- old/findpython-0.6.2/pyproject.toml 2024-10-17 03:34:02.303024000 +0200 +++ new/findpython-0.6.3/pyproject.toml 2025-03-10 03:21:07.927424400 +0100 @@ -18,7 +18,7 @@ "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", ] -version = "0.6.2" +version = "0.6.3" [project.license] text = "MIT" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/findpython-0.6.2/src/findpython/__version__.py new/findpython-0.6.3/src/findpython/__version__.py --- old/findpython-0.6.2/src/findpython/__version__.py 2024-10-17 03:34:02.299024000 +0200 +++ new/findpython-0.6.3/src/findpython/__version__.py 2025-03-10 03:21:07.924424400 +0100 @@ -1 +1 @@ -__version__ = "0.6.2" +__version__ = "0.6.3" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/findpython-0.6.2/src/findpython/python.py new/findpython-0.6.3/src/findpython/python.py --- old/findpython-0.6.2/src/findpython/python.py 2024-10-17 03:33:54.291041000 +0200 +++ new/findpython-0.6.3/src/findpython/python.py 2025-03-10 03:20:55.695396000 +0100 @@ -218,7 +218,12 @@ def __lt__(self, other: PythonVersion) -> bool: """Sort by the version, then by length of the executable path.""" - return (self.version, len(self.executable.as_posix())) < ( + return ( + self.version, + int(self.architecture.startswith("64bit")), + len(self.executable.as_posix()), + ) < ( other.version, + int(other.architecture.startswith("64bit")), len(other.executable.as_posix()), )