Skip to content

Commit bfc1509

Browse files
committed
Update Dockerfile to run 3.13 and (commented out) 3.14 unit tests.
Change-Id: Iebe49ecf938f64fbe4f69080df6053981fd5569c
1 parent 798921b commit bfc1509

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

Dockerfile

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,10 @@ RUN apt-get update -qy && \
2121
python3.9 \
2222
python3.10 \
2323
python3.11 \
24-
python3.12 && \
24+
python3.12 \
25+
python3.13 && \
26+
# python3.13 \
27+
# python3.14 && \
2528
curl -fsSo /tmp/get-pip.py https://bootstrap.pypa.io/pip/3.8/get-pip.py && \
2629
python3.8 /tmp/get-pip.py && \
2730
python3.8 -m pip install --no-cache-dir --upgrade pip && \
@@ -33,6 +36,10 @@ RUN apt-get update -qy && \
3336
python3.11 -m pip install --no-cache-dir --upgrade pip && \
3437
python3.12 /tmp/get-pip.py && \
3538
python3.12 -m pip install --no-cache-dir --upgrade pip && \
39+
python3.13 /tmp/get-pip.py && \
40+
python3.13 -m pip install --no-cache-dir --upgrade pip && \
41+
# python3.14 /tmp/get-pip.py && \
42+
# python3.14 -m pip install --no-cache-dir --upgrade pip && \
3643
rm /tmp/get-pip.py && \
3744
python3 -m pip install --no-cache-dir "nox>=2020.12.31,<2022.6" && \
3845
rm -rf /var/cache/apt/lists

0 commit comments

Comments
 (0)