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

Commit

Permalink
don't try to build binary wheels for Python 2.6
Browse files Browse the repository at this point in the history
  • Loading branch information
beniwohli committed Aug 25, 2016
1 parent 4b8f290 commit 371ecbe
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
1 change: 0 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,6 @@ def run_tests(self):
'Operating System :: OS Independent',
'Topic :: Software Development',
'Programming Language :: Python',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
Expand Down
3 changes: 3 additions & 0 deletions travis/build_manylinux_wheels.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@ export OPBEAT_WRAPT_EXTENSIONS="true"

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

0 comments on commit 371ecbe

Please sign in to comment.