Skip to content

Commit 3ace648

Browse files
committed
break: drop Python 3.13t
1 parent e48bb6c commit 3ace648

File tree

3 files changed

+9
-15
lines changed

3 files changed

+9
-15
lines changed

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -323,7 +323,7 @@ Image content
323323

324324
All supported images currently contain:
325325

326-
- CPython 3.8, 3.9, 3.10, 3.11, 3.12, 3.13, 3.13t, 3.14, 3.14t and PyPy 3.11 installed in
326+
- CPython 3.8, 3.9, 3.10, 3.11, 3.12, 3.13, 3.14, 3.14t and PyPy 3.11 installed in
327327
``/opt/python/<python tag>-<abi tag>``. The directories are named
328328
after the PEP 425 tags for each environment --
329329
e.g. ``/opt/python/cp313-cp313`` contains a CPython 3.13 build, and

docker/Dockerfile

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -194,11 +194,6 @@ ARG MANYLINUX_DISABLE_CLANG_FOR_CPYTHON
194194
RUN --mount=type=bind,from=static_clang,target=/tmp/cross-compiler,ro \
195195
/tmp/cross-compiler/entrypoint /opt/_internal/build_scripts/build-cpython.sh thomas@python.org https://accounts.google.com 3.13.11
196196

197-
FROM build_cpython AS build_cpython313_nogil
198-
ARG MANYLINUX_DISABLE_CLANG_FOR_CPYTHON
199-
RUN --mount=type=bind,from=static_clang,target=/tmp/cross-compiler,ro \
200-
/tmp/cross-compiler/entrypoint /opt/_internal/build_scripts/build-cpython.sh thomas@python.org https://accounts.google.com 3.13.11 nogil
201-
202197
FROM build_cpython AS build_cpython314
203198
ARG MANYLINUX_DISABLE_CLANG_FOR_CPYTHON
204199
RUN --mount=type=bind,from=static_clang,target=/tmp/cross-compiler,ro \
@@ -223,7 +218,6 @@ RUN --mount=type=bind,target=/build_cpython38,from=build_cpython38 \
223218
--mount=type=bind,target=/build_cpython311,from=build_cpython311 \
224219
--mount=type=bind,target=/build_cpython312,from=build_cpython312 \
225220
--mount=type=bind,target=/build_cpython313,from=build_cpython313 \
226-
--mount=type=bind,target=/build_cpython313_nogil,from=build_cpython313_nogil \
227221
--mount=type=bind,target=/build_cpython314,from=build_cpython314 \
228222
--mount=type=bind,target=/build_cpython314_nogil,from=build_cpython314_nogil \
229223
mkdir -p /opt/_internal && \

docker/tests/run_tests.sh

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -7,18 +7,18 @@ set -exuo pipefail
77
MY_DIR=$(dirname "${BASH_SOURCE[0]}")
88

99
if [ "${AUDITWHEEL_POLICY:0:10}" == "musllinux_" ]; then
10-
EXPECTED_PYTHON_COUNT=9
11-
EXPECTED_PYTHON_COUNT_ALL=9
10+
EXPECTED_PYTHON_COUNT=8
11+
EXPECTED_PYTHON_COUNT_ALL=8
1212
else
1313
if [ "${AUDITWHEEL_ARCH}" == "x86_64" ] || [ "${AUDITWHEEL_ARCH}" == "aarch64" ]; then
14-
EXPECTED_PYTHON_COUNT=10
15-
EXPECTED_PYTHON_COUNT_ALL=15
14+
EXPECTED_PYTHON_COUNT=9
15+
EXPECTED_PYTHON_COUNT_ALL=14
1616
elif [ "${AUDITWHEEL_ARCH}" == "i686" ]; then
17-
EXPECTED_PYTHON_COUNT=10
18-
EXPECTED_PYTHON_COUNT_ALL=13
19-
else
2017
EXPECTED_PYTHON_COUNT=9
21-
EXPECTED_PYTHON_COUNT_ALL=9
18+
EXPECTED_PYTHON_COUNT_ALL=12
19+
else
20+
EXPECTED_PYTHON_COUNT=8
21+
EXPECTED_PYTHON_COUNT_ALL=8
2222
fi
2323
fi
2424

0 commit comments

Comments
 (0)