@@ -107,16 +107,6 @@ RUN export OPENSSL_ROOT=openssl-3.0.14 && \
107107 export OPENSSL_DOWNLOAD_URL=https://www.openssl.org/source && \
108108 manylinux-entrypoint /build_scripts/build-openssl.sh
109109
110-
111- FROM build_cpython_system_ssl AS build_cpython36
112- COPY build_scripts/cpython-pubkeys.txt /build_scripts/cpython-pubkeys.txt
113- RUN manylinux-entrypoint /build_scripts/build-cpython.sh 3.6.15
114-
115- FROM build_cpython_system_ssl AS build_cpython37
116- COPY build_scripts/cpython-pubkeys.txt /build_scripts/cpython-pubkeys.txt
117- RUN manylinux-entrypoint /build_scripts/build-cpython.sh 3.7.17
118-
119-
120110FROM build_cpython AS build_cpython38
121111COPY build_scripts/ambv-pubkey.txt /build_scripts/cpython-pubkeys.txt
122112RUN manylinux-entrypoint /build_scripts/build-cpython.sh 3.8.19
@@ -141,24 +131,17 @@ FROM build_cpython AS build_cpython313
141131COPY build_scripts/cpython-pubkey-312-313.txt /build_scripts/cpython-pubkeys.txt
142132RUN manylinux-entrypoint /build_scripts/build-cpython.sh 3.13.0rc1
143133
144- FROM build_cpython AS build_cpython313_nogil
145- COPY build_scripts/cpython-pubkey-312-313.txt /build_scripts/cpython-pubkeys.txt
146- RUN manylinux-entrypoint /build_scripts/build-cpython.sh 3.13.0rc1 nogil
147-
148134
149135FROM runtime_base
150136COPY --from=build_git /manylinux-rootfs /
151137COPY --from=build_cpython_system_ssl /manylinux-rootfs /
152138COPY build_scripts /opt/_internal/build_scripts/
153- RUN --mount=type=bind,target=/build_cpython36,from=build_cpython36 \
154- --mount=type=bind,target=/build_cpython37,from=build_cpython37 \
155- --mount=type=bind,target=/build_cpython38,from=build_cpython38 \
139+ RUN --mount=type=bind,target=/build_cpython38,from=build_cpython38 \
156140 --mount=type=bind,target=/build_cpython39,from=build_cpython39 \
157141 --mount=type=bind,target=/build_cpython310,from=build_cpython310 \
158142 --mount=type=bind,target=/build_cpython311,from=build_cpython311 \
159143 --mount=type=bind,target=/build_cpython312,from=build_cpython312 \
160144 --mount=type=bind,target=/build_cpython313,from=build_cpython313 \
161- --mount=type=bind,target=/build_cpython313_nogil,from=build_cpython313_nogil \
162145 mkdir -p /opt/_internal && \
163146 cp -rf /build_cpython*/opt/_internal/* /opt/_internal/ && \
164147 manylinux-entrypoint /opt/_internal/build_scripts/finalize.sh \
0 commit comments