Skip to content

Commit 9f2038c

Browse files
authored
Merge pull request #157 from gerrod3/3.9-python
Update switch_python script to new default python version 3.9
2 parents 75ee4c1 + e1e7eb3 commit 9f2038c

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

base/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ ENV XDG_CONFIG_HOME=/opt/settings
1010
COPY dev_requirements.txt /dev_requirements.txt
1111

1212
COPY switch_python /usr/bin/switch_python
13-
ARG PYTHON_VERSION=3.8
13+
ARG PYTHON_VERSION=3.9
1414
RUN switch_python "$PYTHON_VERSION"
1515

1616
RUN pip3 install -r dev_requirements.txt

base/switch_python

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
set -e
44

55
NEWV=$1
6-
if [[ "$NEWV" == "3.8" ]]; then
7-
echo "using default python 3.8"
6+
if [[ "$NEWV" == "3.9" ]]; then
7+
echo "using default python 3.9"
88
exit 0
99
fi
1010

0 commit comments

Comments
 (0)