Skip to content

Commit 038268c

Browse files
authored
chore(cross): Update python version (3.12 -> 3.12.4) (#8394)
1 parent b786de1 commit 038268c

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

rust/cubestore/cross/.env

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
CROSS_VERSION=02042024
1+
CROSS_VERSION=25062024

rust/cubestore/cross/aarch64-unknown-linux-gnu.Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ FROM cubejs/cross-aarch64-unknown-linux-gnu:31122022
55

66
RUN apt-get update \
77
&& apt-get -y upgrade \
8-
&& DEBIAN_FRONTEND=noninteractive apt-get install -y software-properties-common pkg-config wget apt-transport-https ca-certificates \
8+
&& DEBIAN_FRONTEND=noninteractive apt-get install -y software-properties-common pkg-config wget curl apt-transport-https ca-certificates \
99
&& wget -O - https://apt.llvm.org/llvm-snapshot.gpg.key | apt-key add - \
1010
&& add-apt-repository "deb https://apt.llvm.org/focal/ llvm-toolchain-focal-18 main" \
1111
&& add-apt-repository -y ppa:deadsnakes/ppa \
@@ -63,7 +63,7 @@ ENV PYO3_CROSS_PYTHON_VERSION=3.11 \
6363
PYO3_CROSS_INCLUDE_DIR=/usr/aarch64-linux-gnu/include \
6464
PYO3_CROSS_LIB_DIR=/usr/aarch64-linux-gnu/lib
6565

66-
ENV PYTHON_VERSION=3.12.0
66+
ENV PYTHON_VERSION=3.12.4
6767
RUN wget https://www.python.org/ftp/python/${PYTHON_VERSION}/Python-${PYTHON_VERSION}.tgz -O - | tar -xz && \
6868
cd Python-${PYTHON_VERSION} && \
6969
touch config.site-aarch64 && \

rust/cubestore/cross/x86_64-unknown-linux-gnu.Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
FROM debian:bullseye-slim
33

44
RUN apt-get update && apt-get -y upgrade \
5-
&& DEBIAN_FRONTEND=noninteractive apt-get install -y software-properties-common pkg-config wget gnupg git apt-transport-https ca-certificates \
5+
&& DEBIAN_FRONTEND=noninteractive apt-get install -y software-properties-common pkg-config wget curl gnupg git apt-transport-https ca-certificates \
66
&& wget -O - https://apt.llvm.org/llvm-snapshot.gpg.key | apt-key add - \
77
&& add-apt-repository "deb https://apt.llvm.org/bullseye/ llvm-toolchain-bullseye-18 main" \
88
&& apt-get update \
@@ -33,7 +33,7 @@ ENV OPENSSL_DIR=/openssl
3333
ENV OPENSSL_ROOT_DIR=/openssl
3434
ENV OPENSSL_LIBRARIES=/openssl/lib
3535

36-
ENV PYTHON_VERSION=3.12.0
36+
ENV PYTHON_VERSION=3.12.4
3737
RUN cd tmp && wget https://www.python.org/ftp/python/${PYTHON_VERSION}/Python-${PYTHON_VERSION}.tgz -O - | tar -xz \
3838
&& cd Python-${PYTHON_VERSION} && \
3939
./configure \

rust/cubestore/cross/x86_64-unknown-linux-musl.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ FROM rustembedded/cross:x86_64-unknown-linux-musl
44

55
RUN apt-get update \
66
&& apt-get -y upgrade \
7-
&& DEBIAN_FRONTEND=noninteractive apt-get install -y software-properties-common pkg-config wget musl-tools libc6-dev apt-transport-https ca-certificates \
7+
&& DEBIAN_FRONTEND=noninteractive apt-get install -y software-properties-common pkg-config wget curl musl-tools libc6-dev apt-transport-https ca-certificates \
88
&& wget -O - https://apt.llvm.org/llvm-snapshot.gpg.key | apt-key add - \
99
&& add-apt-repository "deb https://apt.llvm.org/focal/ llvm-toolchain-focal-18 main" \
1010
&& add-apt-repository -y ppa:deadsnakes/ppa \

0 commit comments

Comments
 (0)