Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add v3.12b1 to README #42

Merged
merged 2 commits into from
May 30, 2023
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
1 change: 1 addition & 0 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ Ubuntu focal (20.04) docker images (64-bit) with Pythons:
* 3.9
* 3.10
* 3.11
* 3.12b1

installed via ``apt-get install python2.7-dev`` (etc).

Expand Down
3 changes: 2 additions & 1 deletion docker/Dockerfile-alpine3.18-arm64v8
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,8 @@ RUN set -eux; \
# https://github.com/alpinelinux/aports/commit/2026e1259422d4e0cf92391ca2d3844356c649d0
EXTRA_CFLAGS="-DTHREAD_STACK_SIZE=0x100000" \
LDFLAGS="-Wl,--strip-all" \
&& make install \
# reduce verbosity so travis logs do not fill up
&& make install > /dev/null \
) \
&& rm -rf /usr/src/python ; \
done \
Expand Down
3 changes: 2 additions & 1 deletion docker/Dockerfile-alpine3.18-x86_64
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,8 @@ RUN set -eux; \
# https://github.com/alpinelinux/aports/commit/2026e1259422d4e0cf92391ca2d3844356c649d0
EXTRA_CFLAGS="-DTHREAD_STACK_SIZE=0x100000" \
LDFLAGS="-Wl,--strip-all" \
&& make install \
# reduce verbosity so travis logs do not fill up
&& make install > /dev/null \
) \
&& rm -rf /usr/src/python ; \
done \
Expand Down