File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 34
34
env :
35
35
- CIBW_BEFORE_BUILD="tools/prepare-cibuildwheel-linux.sh ${LIBRDKAFKA_VERSION}"
36
36
- PYTHON_CONFIGURE_OPTS="--enable-unicode=ucs4 --with-wide-unicode"
37
- - CIBW_MANYLINUX_X86_64_IMAGE="manylinux1 "
38
- - CIBW_MANYLINUX_I686_IMAGE="manylinux1 "
37
+ - CIBW_MANYLINUX_X86_64_IMAGE="manylinux2010 "
38
+ - CIBW_MANYLINUX_I686_IMAGE="manylinux2010 "
39
39
language : python
40
40
python : " 2.7"
41
41
services : docker
Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ if [[ $1 != "--in-docker" ]]; then
23
23
outdir=$2
24
24
[[ -d $outdir ]] || mkdir -p $outdir
25
25
26
- docker_image=quay.io/pypa/manylinux1_x86_64
26
+ docker_image=quay.io/pypa/manylinux2010_x86_64
27
27
28
28
script_in_docker=/tmp/$( basename $0 )
29
29
Original file line number Diff line number Diff line change 12
12
# tools/build-manylinux.sh <librdkafka_tag>
13
13
#
14
14
# Usage in container:
15
- # docker run -t -v $(pwd):/io quay.io/pypa/manylinux1_x86_64 :latest /io/tools/build-manylinux.sh <librdkafka_tag>
15
+ # docker run -t -v $(pwd):/io quay.io/pypa/manylinux2010_x86_64 :latest /io/tools/build-manylinux.sh <librdkafka_tag>
16
16
17
17
LIBRDKAFKA_VERSION=$1
18
18
@@ -33,7 +33,7 @@ if [[ ! -f /.dockerenv ]]; then
33
33
exit 1
34
34
fi
35
35
36
- docker run -t -v $( pwd) :/io quay.io/pypa/manylinux1_x86_64 :latest /io/tools/build-manylinux.sh " $LIBRDKAFKA_VERSION "
36
+ docker run -t -v $( pwd) :/io quay.io/pypa/manylinux2010_x86_64 :latest /io/tools/build-manylinux.sh " $LIBRDKAFKA_VERSION "
37
37
38
38
exit $?
39
39
fi
You can’t perform that action at this time.
0 commit comments