From b2fc3f4220b7fb89a93f474c3e8ae95459ad7f70 Mon Sep 17 00:00:00 2001 From: Joe Rickerby Date: Tue, 18 Jul 2017 23:12:07 +0100 Subject: [PATCH] Remove more Python 2.6 support that I missed. See #12. --- cibuildwheel/linux.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/cibuildwheel/linux.py b/cibuildwheel/linux.py index 7f021bd5..8b7147ff 100644 --- a/cibuildwheel/linux.py +++ b/cibuildwheel/linux.py @@ -26,8 +26,6 @@ def build(project_dir, package_name, output_dir, test_command, test_requires, be PythonConfiguration(identifier='cp34-manylinux1_x86_64', path='/opt/python/cp34-cp34m'), PythonConfiguration(identifier='cp35-manylinux1_x86_64', path='/opt/python/cp35-cp35m'), PythonConfiguration(identifier='cp36-manylinux1_x86_64', path='/opt/python/cp36-cp36m'), - PythonConfiguration(identifier='cp26-manylinux1_i686', path='/opt/python/cp26-cp26m'), - PythonConfiguration(identifier='cp26-manylinux1_i686', path='/opt/python/cp26-cp26mu'), PythonConfiguration(identifier='cp27-manylinux1_i686', path='/opt/python/cp27-cp27m'), PythonConfiguration(identifier='cp27-manylinux1_i686', path='/opt/python/cp27-cp27mu'), PythonConfiguration(identifier='cp33-manylinux1_i686', path='/opt/python/cp33-cp33m'),