Skip to content

Commit f180d7c

Browse files
authored
feat(nox): support Python 3.10 (#315)
Also install ssh & git to workaround flakiness when using this as a CircleCI image. See pydata/pydata-google-auth#43
1 parent 8b81f5e commit f180d7c

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

docker-nox/Dockerfile

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@ RUN apt-get update -qy && \
1010
apt-key adv --keyserver keyserver.ubuntu.com --recv-keys F23C5A6CF475977595C89F51BA6932366A755776 && \
1111
apt-get update -qy && \
1212
apt-get install -qy \
13+
openssh-client \
14+
git \
1315
python2.7 \
1416
python2.7-dev \
1517
python3.5 \
@@ -23,6 +25,9 @@ RUN apt-get update -qy && \
2325
python3.9 \
2426
python3.9-dev \
2527
python3.9-distutils \
28+
python3.10 \
29+
python3.10-dev \
30+
python3.10-distutils \
2631
python3-pip && \
2732
curl https://bootstrap.pypa.io/pip/2.7/get-pip.py --output /tmp/get-pip.py && \
2833
python2.7 /tmp/get-pip.py && \
@@ -33,5 +38,6 @@ RUN apt-get update -qy && \
3338
python3.7 -m pip install --upgrade pip && \
3439
python3.8 -m pip install --upgrade pip && \
3540
python3.9 -m pip install --upgrade pip && \
41+
python3.10 -m pip install --upgrade pip && \
3642
python3 -m pip install 'nox==2022.1.7' && \
3743
rm -rf /var/cache/apt/lists

0 commit comments

Comments
 (0)