Skip to content

Commit a305802

Browse files
committed
Don't build Py27 wheels
1 parent 60ad0d3 commit a305802

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

tools/wheels/build-wheels.bat

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ set WHEELHOUSE=%4
1313
if [%WHEELHOUSE%]==[] goto usage
1414
echo on
1515

16-
set CIBW_BUILD=cp27-%BW_ARCH% cp36-%BW_ARCH% cp37-%BW_ARCH% cp38-%BW_ARCH% cp39-%BW_ARCH%
16+
set CIBW_BUILD=cp36-%BW_ARCH% cp37-%BW_ARCH% cp38-%BW_ARCH% cp39-%BW_ARCH%
1717
set CIBW_BEFORE_BUILD=python -m pip install delvewheel==0.0.6
1818
set CIBW_TEST_REQUIRES=-r tests/requirements.txt
1919
set CIBW_TEST_COMMAND=pytest {project}\tests\test_Producer.py

tools/wheels/build-wheels.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
this_dir="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
88

99

10-
# Skip PyPy, old Python3 versions, and x86 builds.
11-
export CIBW_SKIP="pp* cp35-* *i686"
10+
# Skip PyPy, Python2, old Python3 versions, and x86 builds.
11+
export CIBW_SKIP="pp* cp27-* cp35-* *i686"
1212
# Run a simple test suite
1313
export CIBW_TEST_REQUIRES="-r tests/requirements.txt"
1414
export CIBW_TEST_COMMAND="pytest {project}/tests/test_Producer.py"

0 commit comments

Comments
 (0)