Skip to content

Commit 1a76340

Browse files
authored
Merge pull request #297 from tao12345666333/3.7.0-release
Update 3.7.0b5 to 3.7.0
2 parents 341c752 + 2a79ecb commit 1a76340

File tree

8 files changed

+11
-11
lines changed

8 files changed

+11
-11
lines changed

.appveyor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ image: Visual Studio 2017
33

44
environment:
55
matrix:
6-
- version: 3.7-rc
6+
- version: 3.7
77
variant: windowsservercore-ltsc2016
88
- version: 3.6
99
variant: windowsservercore-ltsc2016

.travis.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@ language: bash
22
services: docker
33

44
env:
5-
- VERSION=3.7-rc VARIANT=stretch
6-
- VERSION=3.7-rc VARIANT=stretch/slim
7-
- VERSION=3.7-rc VARIANT=alpine3.7
5+
- VERSION=3.7 VARIANT=stretch
6+
- VERSION=3.7 VARIANT=stretch/slim
7+
- VERSION=3.7 VARIANT=alpine3.7
88
- VERSION=3.6 VARIANT=stretch
99
- VERSION=3.6 VARIANT=stretch/slim
1010
- VERSION=3.6 VARIANT=jessie

3.7-rc/alpine3.7/Dockerfile renamed to 3.7/alpine3.7/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ 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.0b5
21+
ENV PYTHON_VERSION 3.7.0
2222

2323
RUN set -ex \
2424
&& apk add --no-cache --virtual .fetch-deps \

3.7-rc/stretch/Dockerfile renamed to 3.7/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.0b5
23+
ENV PYTHON_VERSION 3.7.0
2424

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

3.7-rc/stretch/slim/Dockerfile renamed to 3.7/stretch/slim/Dockerfile

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

2828
ENV GPG_KEY 0D96DF4D4110E5C43FBFB17F2D347EA6AA65421D
29-
ENV PYTHON_VERSION 3.7.0b5
29+
ENV PYTHON_VERSION 3.7.0
3030

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

3.7-rc/windows/windowsservercore-1709/Dockerfile renamed to 3.7/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.0b5
11+
ENV PYTHON_VERSION 3.7.0
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 renamed to 3.7/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.0b5
11+
ENV PYTHON_VERSION 3.7.0
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); \

generate-stackbrew-library.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
set -Eeuo pipefail
33

44
declare -A aliases=(
5-
[3.7-rc]='rc'
6-
[3.6]='3 latest'
5+
[3.8-rc]='rc'
6+
[3.7]='3 latest'
77
[2.7]='2'
88
)
99

0 commit comments

Comments
 (0)