Skip to content

Commit 7266541

Browse files
committed
skip 3.12
1 parent b3ecf2e commit 7266541

File tree

3 files changed

+4
-10
lines changed

3 files changed

+4
-10
lines changed

.github/workflows/docker-builds.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,11 +25,11 @@ jobs:
2525
include:
2626
- { ubuntu_version: "24.04", python_version: "3.10", opencv_version: "4.10.0", device: "cpu" }
2727
- { ubuntu_version: "24.04", python_version: "3.11", opencv_version: "4.10.0", device: "cpu" }
28-
- { ubuntu_version: "24.04", python_version: "3.12", opencv_version: "4.10.0", device: "cpu" }
28+
#- { ubuntu_version: "24.04", python_version: "3.12", opencv_version: "4.10.0", device: "cpu" }
2929
- { ubuntu_version: "24.04", python_version: "3.13", opencv_version: "4.10.0", device: "cpu" }
3030
- { ubuntu_version: "24.04", python_version: "3.10", opencv_version: "4.10.0", device: "gpu", cuda_version: "12.8.0" }
3131
- { ubuntu_version: "24.04", python_version: "3.11", opencv_version: "4.10.0", device: "gpu", cuda_version: "12.8.0" }
32-
- { ubuntu_version: "24.04", python_version: "3.12", opencv_version: "4.10.0", device: "gpu", cuda_version: "12.8.0" }
32+
#- { ubuntu_version: "24.04", python_version: "3.12", opencv_version: "4.10.0", device: "gpu", cuda_version: "12.8.0" }
3333
- { ubuntu_version: "24.04", python_version: "3.13", opencv_version: "4.10.0", device: "gpu", cuda_version: "12.8.0" }
3434
steps:
3535
- name: Checkout

cpu/Dockerfile

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,6 @@ RUN \
3030
python${PYTHON_VERSION} \
3131
python${PYTHON_VERSION}-dev \
3232
$( if [ "${PYTHON_VERSION%%.*}" -eq 3 ] && [ "${PYTHON_VERSION#*.}" -lt 10 ]; then echo "python${PYTHON_VERSION}-distutils"; fi ) \
33-
$( if [ "${PYTHON_VERSION}" == "3.12" ]; then echo "python3-pip"; fi ) \
3433
curl \
3534
wget && \
3635
rm -rf /var/lib/apt/lists/* && \
@@ -39,9 +38,7 @@ RUN \
3938
update-alternatives --install /usr/bin/python python /usr/bin/python${PYTHON_VERSION} 1 && \
4039
# install python dependencies \
4140
PIP_URL="https://bootstrap.pypa.io/get-pip.py" && \
42-
if [ "${PYTHON_VERSION}" != "3.12" ]; then \
43-
curl $PIP_URL | python ; \
44-
fi
41+
curl $PIP_URL | python
4542

4643
ENV PYTHONPATH="/usr/lib/python${PYTHON_VERSION}/site-packages:/usr/local/lib/python${PYTHON_VERSION}/site-packages"
4744

gpu/Dockerfile

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,6 @@ RUN \
3636
python${PYTHON_VERSION} \
3737
python${PYTHON_VERSION}-dev \
3838
$( if [ "${PYTHON_VERSION%%.*}" -eq 3 ] && [ "${PYTHON_VERSION#*.}" -lt 10 ]; then echo "python${PYTHON_VERSION}-distutils"; fi ) \
39-
$( if [ "${PYTHON_VERSION}" == "3.12" ]; then echo "python3-pip"; fi ) \
4039
curl \
4140
wget && \
4241
rm -rf /var/lib/apt/lists/* && \
@@ -45,9 +44,7 @@ RUN \
4544
update-alternatives --install /usr/bin/python python /usr/bin/python${PYTHON_VERSION} 1 && \
4645
# install python dependencies
4746
PIP_URL="https://bootstrap.pypa.io/get-pip.py" && \
48-
if [ "${PYTHON_VERSION}" != "3.12" ]; then \
49-
curl $PIP_URL | python ; \
50-
fi
47+
curl $PIP_URL | python
5148

5249
ENV PYTHONPATH="/usr/lib/python${PYTHON_VERSION}/site-packages:/usr/local/lib/python${PYTHON_VERSION}/site-packages"
5350

0 commit comments

Comments
 (0)