diff --git a/manylinux_2_28-wheel-build/Makefile b/manylinux_2_28-wheel-build/Makefile index 1b79801d..715af12f 100644 --- a/manylinux_2_28-wheel-build/Makefile +++ b/manylinux_2_28-wheel-build/Makefile @@ -20,8 +20,6 @@ wheel: -[ ! -d out ] && mkdir out docker run --rm -v $(ROOT):/Pillow -v `pwd`/out:/output $(IMAGENAME):$(BRANCH) /build.sh $(_PYVER) -310: - _PYVER=310 $(MAKE) wheel 311: _PYVER=311 $(MAKE) wheel 312: diff --git a/manylinux_2_28-wheel-build/README.md b/manylinux_2_28-wheel-build/README.md index a5dd8d61..4c972947 100644 --- a/manylinux_2_28-wheel-build/README.md +++ b/manylinux_2_28-wheel-build/README.md @@ -18,7 +18,7 @@ The Makefile has several new commands: * make wheel: Makes a Python 3.14 manylinux_2_28 wheel, and puts it in the ./out directory. -* make 310|311|312|313|314: These are specific commands to make the +* make 311|312|313|314: These are specific commands to make the corresponding 3.x version in the ./out directory. The test target here is mainly to validate the image build, it is diff --git a/manylinux_2_28-wheel-build/build.sh b/manylinux_2_28-wheel-build/build.sh index d20b532b..49576c60 100755 --- a/manylinux_2_28-wheel-build/build.sh +++ b/manylinux_2_28-wheel-build/build.sh @@ -16,7 +16,7 @@ fi # not strictly necessary, unless running multiple versions from the shell rm -f /tmp/*.whl || true -# Python version, as 310,311,312,313|314. Defaults to 314. +# Python version, as 311,312,313|314. Defaults to 314. # Matches the naming in /opt/python/ PYVER=${1:-314} PYBIN=$(echo /opt/python/cp${PYVER}-cp${PYVER}/bin)