Skip to content

Commit 1dcbfcc

Browse files
Update to 3.7.0b1, pip 9.0.1
1 parent 55186d2 commit 1dcbfcc

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

3.7-rc/alpine3.7/Dockerfile

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,12 @@ ENV LANG C.UTF-8
1818
RUN apk add --no-cache ca-certificates
1919

2020
ENV GPG_KEY 0D96DF4D4110E5C43FBFB17F2D347EA6AA65421D
21-
ENV PYTHON_VERSION 3.7.0a4
21+
ENV PYTHON_VERSION 3.7.0b1
2222

2323
RUN set -ex \
2424
&& apk add --no-cache --virtual .fetch-deps \
2525
gnupg \
26-
libressl \
26+
openssl \
2727
tar \
2828
xz \
2929
\
@@ -49,8 +49,8 @@ RUN set -ex \
4949
linux-headers \
5050
make \
5151
ncurses-dev \
52-
libressl \
53-
libressl-dev \
52+
openssl \
53+
openssl-dev \
5454
pax-utils \
5555
readline-dev \
5656
sqlite-dev \
@@ -106,7 +106,7 @@ ENV PYTHON_PIP_VERSION 9.0.1
106106

107107
RUN set -ex; \
108108
\
109-
apk add --no-cache --virtual .fetch-deps libressl; \
109+
apk add --no-cache --virtual .fetch-deps openssl; \
110110
\
111111
wget -O get-pip.py 'https://bootstrap.pypa.io/get-pip.py'; \
112112
\

3.7-rc/stretch/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
2020
&& rm -rf /var/lib/apt/lists/*
2121

2222
ENV GPG_KEY 0D96DF4D4110E5C43FBFB17F2D347EA6AA65421D
23-
ENV PYTHON_VERSION 3.7.0a4
23+
ENV PYTHON_VERSION 3.7.0b1
2424

2525
RUN set -ex \
2626
&& buildDeps=' \

3.7-rc/stretch/slim/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
2525
&& rm -rf /var/lib/apt/lists/*
2626

2727
ENV GPG_KEY 0D96DF4D4110E5C43FBFB17F2D347EA6AA65421D
28-
ENV PYTHON_VERSION 3.7.0a4
28+
ENV PYTHON_VERSION 3.7.0b1
2929

3030
RUN set -ex \
3131
&& buildDeps=" \

3.7-rc/windows/windowsservercore-1709/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ FROM microsoft/windowsservercore:1709
88

99
SHELL ["powershell", "-Command", "$ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue';"]
1010

11-
ENV PYTHON_VERSION 3.7.0a4
11+
ENV PYTHON_VERSION 3.7.0b1
1212
ENV PYTHON_RELEASE 3.7.0
1313

1414
RUN $url = ('https://www.python.org/ftp/python/{0}/python-{1}-amd64.exe' -f $env:PYTHON_RELEASE, $env:PYTHON_VERSION); \

3.7-rc/windows/windowsservercore-ltsc2016/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ FROM microsoft/windowsservercore:ltsc2016
88

99
SHELL ["powershell", "-Command", "$ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue';"]
1010

11-
ENV PYTHON_VERSION 3.7.0a4
11+
ENV PYTHON_VERSION 3.7.0b1
1212
ENV PYTHON_RELEASE 3.7.0
1313

1414
RUN $url = ('https://www.python.org/ftp/python/{0}/python-{1}-amd64.exe' -f $env:PYTHON_RELEASE, $env:PYTHON_VERSION); \

0 commit comments

Comments
 (0)