Control: reopen -1 Control: tags -1 patch On Mon, Jun 29, 2026 at 06:11:05PM +0000, Thomas Goirand wrote: > Control: tag -1 pending > > Hello, > > Bug #1140973 in ceph reported by you has been fixed in the > Git repository and is awaiting an upload. You can see the commit > message below and you can check the diff of the fix at: > > https://salsa.debian.org/ceph-team/ceph/-/commit/b3085f17c834a705b55d40fec7d45679d577294a > > ------------------------------------------------------------------------ > Add python3-all build-depends (Closes: #1140973). > ------------------------------------------------------------------------ >...
This fixed the build - by still building with Python 3.13. Please revert this change, and add the attached patch instead. cu Adrian
Description: Accept Python 3.14 and 3.15 Author: Adrian Bunk <[email protected]> Bug-Debian: https://bugs.debian.org/1140973 --- ceph-20.2.2+ds.orig/cmake/modules/FindPython/Support.cmake +++ ceph-20.2.2+ds/cmake/modules/FindPython/Support.cmake @@ -24,7 +24,7 @@ if (NOT DEFINED _${_PYTHON_PREFIX}_REQUI message (FATAL_ERROR "FindPython: INTERNAL ERROR") endif() if (_${_PYTHON_PREFIX}_REQUIRED_VERSION_MAJOR EQUAL "3") - set(_${_PYTHON_PREFIX}_VERSIONS 3.13 3.12 3.11 3.10 3.9 3.8 3.7 3.6 3.5 3.4 3.3 3.2 3.1 3.0) + set(_${_PYTHON_PREFIX}_VERSIONS 3.15 3.14 3.13 3.12 3.11 3.10 3.9 3.8 3.7 3.6 3.5 3.4 3.3 3.2 3.1 3.0) elseif (_${_PYTHON_PREFIX}_REQUIRED_VERSION_MAJOR EQUAL "2") set(_${_PYTHON_PREFIX}_VERSIONS 2.7 2.6 2.5 2.4 2.3 2.2 2.1 2.0) else()

