Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions manylinux_2_28-wheel-build/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion manylinux_2_28-wheel-build/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion manylinux_2_28-wheel-build/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
Loading