Skip to content

Commit

Permalink
feat(nox): support Python 3.10
Browse files Browse the repository at this point in the history
Also install ssh & git to workaround flakiness when using this as a CircleCI image. pydata/pydata-google-auth#43
  • Loading branch information
tswast authored Dec 3, 2021
1 parent 15ebd74 commit 9f82557
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions docker-nox/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ RUN apt-get update -qy && \
apt-key adv --keyserver keyserver.ubuntu.com --recv-keys F23C5A6CF475977595C89F51BA6932366A755776 && \
apt-get update -qy && \
apt-get install -qy \
openssh-client \
git \
python2.7 \
python2.7-dev \
python3.5 \
Expand All @@ -23,6 +25,9 @@ RUN apt-get update -qy && \
python3.9 \
python3.9-dev \
python3.9-distutils \
python3.10 \
python3.10-dev \
python3.10-distutils \
python3-pip && \
curl https://bootstrap.pypa.io/pip/2.7/get-pip.py --output /tmp/get-pip.py && \
python2.7 /tmp/get-pip.py && \
Expand All @@ -33,5 +38,6 @@ RUN apt-get update -qy && \
python3.7 -m pip install --upgrade pip && \
python3.8 -m pip install --upgrade pip && \
python3.9 -m pip install --upgrade pip && \
python3.10 -m pip install --upgrade pip && \
python3 -m pip install 'nox==2021.10.1' && \
rm -rf /var/cache/apt/lists

0 comments on commit 9f82557

Please sign in to comment.