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 2025-06-03 17:57:34 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/python-findpython (Old) and /work/SRC/openSUSE:Factory/.python-findpython.new.16005 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-findpython" Tue Jun 3 17:57:34 2025 rev:12 rq:1282348 version:0.6.3 Changes: -------- --- /work/SRC/openSUSE:Factory/python-findpython/python-findpython.changes 2024-10-23 21:11:14.857117683 +0200 +++ /work/SRC/openSUSE:Factory/.python-findpython.new.16005/python-findpython.changes 2025-06-03 17:58:06.756983307 +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.kqZBCj/_old 2025-06-03 17:58:07.353008020 +0200 +++ /var/tmp/diff_new_pack.kqZBCj/_new 2025-06-03 17:58:07.353008020 +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()), )