File tree 4 files changed +3
-14
lines changed
4 files changed +3
-14
lines changed Original file line number Diff line number Diff line change 1
1
# syntax = docker/dockerfile:experimental
2
- FROM ghcr .io/pyca/cryptography-manylinux2010:x86_64
2
+ FROM quay .io/pypa/manylinux2014_x86_64
3
3
4
4
ENV PATH=/opt/python/cp37-cp37m/bin:${PATH}
5
5
Original file line number Diff line number Diff line change @@ -353,7 +353,7 @@ build-Linux:
353
353
-v /build \
354
354
-e CCACHE_DIR=/root/.cache/ccache \
355
355
-e CCACHE_COMPRESS \
356
- ghcr .io/pyca/cryptography-manylinux2010:x86_64 \
356
+ quay .io/pypa/manylinux2014_x86_64 \
357
357
bash -c ' /src/build-manylinux.sh /src/$(VENDOR) ${LINUX_DEBUG_CMD_$(LINUX_DEBUG)}'
358
358
359
359
tar czf $(vendor-Linux-archive) -C $(VENDOR) env wheelhouse
Original file line number Diff line number Diff line change @@ -20,17 +20,6 @@ if [ -n "$CCACHE_DIR" ]; then
20
20
export PATH=/usr/lib64/ccache:${PATH}
21
21
fi
22
22
23
- echo " >>> Building patched patchelf"
24
- # https://github.com/pypa/auditwheel/issues/159
25
- mkdir /patchelf
26
- curl -sL https://github.com/nvictus/patchelf/archive/d7483d92cfd614e06839c18d2fa194b88ff777a2.tar.gz | tar xz -C /patchelf --strip-components=1
27
- pushd /patchelf
28
- ./bootstrap.sh
29
- ./configure
30
- make
31
- make install
32
- popd
33
-
34
23
echo " >>> Python: $( command -v python3.7) "
35
24
36
25
echo " >>> Setting up /build ..."
Original file line number Diff line number Diff line change 9
9
from auditwheel .policy .external_references import lddtree_external_references
10
10
11
11
12
- POLICY = "manylinux2010_x86_64"
12
+ POLICY = "manylinux_2_17_x86_64" # ie: manylinux2014_x86_64
13
13
14
14
15
15
def main ():
You can’t perform that action at this time.
0 commit comments