For reasons that I couldn't fully track down, if you compile dev-lang/gdl-1.04-r1 with numpy installed for python3_11 and set (for gdl) PYTHON_SINGLE_TARGET=python3_11 and you have python3_13 also installed but without numpy for python3_13 then gdl won't compile. It complains that it can't find a valid python installation with numpy. It says that it detected python 3.13.1 and that python 3.11 was the minimum but that, as such, python is not detected. To solve, you must install numpy with PYTHON_TARGETS=python3.13. It doesn't matter what gdl's PYTHON_SINGLE_TARGET is set to. Alternatively you can edit the ebuild for gdl to add python3_13 to PYTHON_COMPAT and the set PYTHON_SINGLE_TARGET=python3.13 for gdl and everything works out. To reproduce: Install python3_13 and python3_11. Install numpy with PYTHON_TARGETS="-python3_13 python3_11" Try to install dev-lang/gdl Workaround: change PYTHON_COMPAT to include python3_13 in gdl.ebuild compile dev-lang/gdl with PYTHON_SINGLE_TARGET=python3_13