@@ -12,12 +12,14 @@ ENV PYTHON_VERSION_27 2.7.16
12
12
ENV PYTHON_VERSION_35 3.5.7
13
13
ENV PYTHON_VERSION_36 3.6.8
14
14
ENV PYTHON_VERSION_37 3.7.3
15
+ ENV PYTHON_VERSION_38 3.8.0
15
16
ENV PYPY_VERSION_35 pypy3.5-7.0.0
16
17
ENV CONDA_VERSION 4.6.14
17
18
LABEL python.version_27=$PYTHON_VERSION_27
18
19
LABEL python.version_35=$PYTHON_VERSION_35
19
20
LABEL python.version_36=$PYTHON_VERSION_36
20
21
LABEL python.version_37=$PYTHON_VERSION_37
22
+ LABEL python.version_38=$PYTHON_VERSION_38
21
23
LABEL pypy.version_35=$PYPY_VERSION_35
22
24
LABEL conda.version=$CONDA_VERSION
23
25
@@ -160,12 +162,14 @@ ENV PATH /home/docs/.pyenv/shims:$PATH:/home/docs/.pyenv/bin
160
162
161
163
# Install supported Python versions
162
164
RUN pyenv install $PYTHON_VERSION_27 && \
165
+ pyenv install $PYTHON_VERSION_38 && \
163
166
pyenv install $PYTHON_VERSION_37 && \
164
167
pyenv install $PYTHON_VERSION_35 && \
165
168
pyenv install $PYTHON_VERSION_36 && \
166
169
pyenv install $PYPY_VERSION_35 && \
167
170
pyenv global \
168
171
$PYTHON_VERSION_27 \
172
+ $PYTHON_VERSION_38 \
169
173
$PYTHON_VERSION_37 \
170
174
$PYTHON_VERSION_36 \
171
175
$PYTHON_VERSION_35 \
@@ -179,6 +183,12 @@ RUN pyenv local $PYTHON_VERSION_27 && \
179
183
pyenv exec pip install --no-cache-dir --only-binary numpy,scipy numpy scipy && \
180
184
pyenv exec pip install --no-cache-dir pandas matplotlib virtualenv
181
185
186
+ RUN pyenv local $PYTHON_VERSION_38 && \
187
+ pyenv exec pip install --no-cache-dir -U pip && \
188
+ pyenv exec pip install --no-cache-dir -U setuptools && \
189
+ pyenv exec pip install --no-cache-dir --only-binary numpy numpy && \
190
+ pyenv exec pip install --no-cache-dir pandas matplotlib virtualenv
191
+
182
192
RUN pyenv local $PYTHON_VERSION_37 && \
183
193
pyenv exec pip install --no-cache-dir -U pip && \
184
194
pyenv exec pip install --no-cache-dir -U setuptools && \
0 commit comments