[python-committers] Failed to build select
Steven D'Aprano
steve at pearwood.info
Sun Aug 7 22:58:05 EDT 2016
Hi,
I've just re-built the latest Python 3.6 from the repo using this:
PYTHONHOME=/usr/local ./configure --with-pydebug && make -s -j2
and I'm getting:
Failed to build these modules:
select
which means I can't run the test suite:
[steve at ando cpython]$ ./python -m test -j3
Traceback (most recent call last):
File "/home/steve/python/python-dev/cpython/Lib/runpy.py", line 184, in _run_module_as_main
"__main__", mod_spec)
File "/home/steve/python/python-dev/cpython/Lib/runpy.py", line 85, in _run_code
exec(code, run_globals)
File "/home/steve/python/python-dev/cpython/Lib/test/__main__.py", line 1, in <module>
from test.libregrtest import main
File "/home/steve/python/python-dev/cpython/Lib/test/libregrtest/__init__.py", line 4, in <module>
from test.libregrtest.cmdline import _parse_args, RESOURCE_NAMES
File "/home/steve/python/python-dev/cpython/Lib/test/libregrtest/cmdline.py", line 4, in <module>
from test import support
File "/home/steve/python/python-dev/cpython/Lib/test/support/__init__.py", line 15, in <module>
import logging.handlers
File "/home/steve/python/python-dev/cpython/Lib/logging/handlers.py", line 26, in <module>
import logging, socket, os, pickle, struct, time, re
File "/home/steve/python/python-dev/cpython/Lib/socket.py", line 52, in <module>
import os, sys, io, selectors
File "/home/steve/python/python-dev/cpython/Lib/selectors.py", line 11, in <module>
import select
ImportError: No module named 'select'
Is it just me? Any suggestions?
--
Steve
More information about the python-committers
mailing list