Skip to content

Commit 11fac8d

Browse files
authored
Drop Python 3.9 from manylinux builds (#242)
2 parents fe24be9 + 053e2c1 commit 11fac8d

File tree

6 files changed

+4
-8
lines changed

6 files changed

+4
-8
lines changed

manylinux2014-wheel-build/Makefile

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,6 @@ wheel:
2020
-[ ! -d out ] && mkdir out
2121
docker run --rm -v $(ROOT):/Pillow -v `pwd`/out:/output $(IMAGENAME):$(BRANCH) /build.sh $(_PYVER)
2222

23-
39:
24-
_PYVER=39 $(MAKE) wheel
2523
310:
2624
_PYVER=310 $(MAKE) wheel
2725
311:

manylinux2014-wheel-build/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ The Makefile has several new commands:
1818

1919
* make wheel: Makes a Python 3.13 manylinux2014 wheel, and puts it in the
2020
./out directory.
21-
* make 39|310|311|312|313: These are specific commands to make the
21+
* make 310|311|312|313: These are specific commands to make the
2222
corresponding 3.x version in the ./out directory.
2323

2424
The test target here is mainly to validate the image build, it is

manylinux2014-wheel-build/build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ fi
1616
# not strictly necessary, unless running multiple versions from the shell
1717
rm -f /tmp/*.whl || true
1818

19-
# Python version, as 39,310,311,312,313. Defaults to 313.
19+
# Python version, as 310,311,312,313. Defaults to 313.
2020
# Matches the naming in /opt/python/
2121
PYVER=${1:-313}
2222
PYBIN=$(echo /opt/python/cp${PYVER}-cp${PYVER}/bin)

manylinux_2_28-wheel-build/Makefile

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,6 @@ wheel:
2020
-[ ! -d out ] && mkdir out
2121
docker run --rm -v $(ROOT):/Pillow -v `pwd`/out:/output $(IMAGENAME):$(BRANCH) /build.sh $(_PYVER)
2222

23-
39:
24-
_PYVER=39 $(MAKE) wheel
2523
310:
2624
_PYVER=310 $(MAKE) wheel
2725
311:

manylinux_2_28-wheel-build/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ The Makefile has several new commands:
1818

1919
* make wheel: Makes a Python 3.13 manylinux_2_28 wheel, and puts it in the
2020
./out directory.
21-
* make 39|310|311|312|313: These are specific commands to make the
21+
* make 310|311|312|313: These are specific commands to make the
2222
corresponding 3.x version in the ./out directory.
2323

2424
The test target here is mainly to validate the image build, it is

manylinux_2_28-wheel-build/build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ fi
1616
# not strictly necessary, unless running multiple versions from the shell
1717
rm -f /tmp/*.whl || true
1818

19-
# Python version, as 39,310,311,312,313. Defaults to 313.
19+
# Python version, as 310,311,312,313. Defaults to 313.
2020
# Matches the naming in /opt/python/
2121
PYVER=${1:-313}
2222
PYBIN=$(echo /opt/python/cp${PYVER}-cp${PYVER}/bin)

0 commit comments

Comments
 (0)