Skip to content
This repository was archived by the owner on Jun 11, 2018. It is now read-only.

Commit 371ecbe

Browse files
committed
don't try to build binary wheels for Python 2.6
1 parent 4b8f290 commit 371ecbe

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

setup.py

-1
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,6 @@ def run_tests(self):
172172
'Operating System :: OS Independent',
173173
'Topic :: Software Development',
174174
'Programming Language :: Python',
175-
'Programming Language :: Python :: 2.6',
176175
'Programming Language :: Python :: 2.7',
177176
'Programming Language :: Python :: 3.3',
178177
'Programming Language :: Python :: 3.4',

travis/build_manylinux_wheels.sh

+3
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@ export OPBEAT_WRAPT_EXTENSIONS="true"
77

88
# Compile wheels
99
for PYBIN in /opt/python/*/bin; do
10+
if [[ $PYBIN == *cp26* ]]; then
11+
continue
12+
fi
1013
${PYBIN}/pip install -r /io/test_requirements/requirements-base.txt
1114
${PYBIN}/pip install -r /io/test_requirements/requirements-python-$($PYBIN/python -c "import sys; print(sys.version_info[0])").txt
1215
${PYBIN}/pip wheel /io/ -w wheelhouse/

0 commit comments

Comments
 (0)