Please update to python-3.2beta (or newer), see http://www.python.org/download/releases/3.2/ (3.2a is broken trying to build python3-PyQt4, see linked bug #665962 )
Sorry for not getting this into rawhide earlier; am working on it.
I have a version that builds on my stable machine; am testing it now on my rawhide box. Note that due to PEP 3149 http://www.python.org/dev/peps/pep-3149/ this changes the libpython SONAME (and other details about how libraries are imported), so this will require another full rebuild of all src.rpms with a python3 component. Assuming my testing goes OK, I'll try to do as many of these as I can.
3.2b2 built into rawhide as python3-3.2-0.6.b2.fc15 http://koji.fedoraproject.org/koji/taskinfo?taskID=2693334
OK, thanks! Query: PyQt4 is now failing to link using a hard-coded -lpython3.2 I assume there's a way to perform some query similar to get_python_lib that can return the name of the python shlib?
(In reply to comment #4) ... > I assume there's a way to perform some query similar to get_python_lib that can > return the name of the python shlib? Summarizing our IRC chat earlier: From shell, this is easiest: python3-config --libs Looking at the implementation of that, if you need to do it directly from python, try something like: from distutils import sysconfig import sys def shlib(): return ('-lpython' + sysconfig.get_config_var('VERSION') + (sys.abiflags if hasattr(sys, 'abiflags') else '')) <dmalcolm> on python 3.2 rawhide: <dmalcolm> -lpython3.2mu <dmalcolm> on python 2.7 rawhide: <dmalcolm> -lpython2.7 <dmalcolm> works on python 2.6 as well