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 manylinux2014-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)

39:
_PYVER=39 $(MAKE) wheel
310:
_PYVER=310 $(MAKE) wheel
311:
Expand Down
2 changes: 1 addition & 1 deletion manylinux2014-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.13 manylinux2014 wheel, and puts it in the
./out directory.
* make 39|310|311|312|313: These are specific commands to make the
* make 310|311|312|313: 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 manylinux2014-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 39,310,311,312,313. Defaults to 313.
# Python version, as 310,311,312,313. Defaults to 313.
# Matches the naming in /opt/python/
PYVER=${1:-313}
PYBIN=$(echo /opt/python/cp${PYVER}-cp${PYVER}/bin)
Expand Down
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)

39:
_PYVER=39 $(MAKE) wheel
310:
_PYVER=310 $(MAKE) wheel
311:
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.13 manylinux_2_28 wheel, and puts it in the
./out directory.
* make 39|310|311|312|313: These are specific commands to make the
* make 310|311|312|313: 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 39,310,311,312,313. Defaults to 313.
# Python version, as 310,311,312,313. Defaults to 313.
# Matches the naming in /opt/python/
PYVER=${1:-313}
PYBIN=$(echo /opt/python/cp${PYVER}-cp${PYVER}/bin)
Expand Down
Loading