File: quick-build-manylinux.sh

package info (click to toggle)
python-confluent-kafka 1.7.0-5
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,904 kB
  • sloc: python: 8,335; ansic: 6,065; sh: 1,203; makefile: 178
file content (18 lines) | stat: -rwxr-xr-x 340 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/bin/bash
#

set -e

python setup.py clean -a

rm -f wheelhouse/* ../kafka/wheels/*

export CIBW_BEFORE_BUILD="tools/prepare-cibuildwheel-linux.sh master"

if [[ -z $CIBW_SKIP ]]; then
    export CIBW_SKIP='cp*-*i686 cp33-* cp34-* cp35-* cp36-*'
fi

cibuildwheel --output-dir wheelhouse --platform linux

cp wheelhouse/* ../kafka/wheels/