Skip to content

Commit 2c9cd97

Browse files
authored
Merge pull request #161 from mike9005/3-6-release
Update 3.6.0rc2 to 3.6.0
2 parents f78fa8a + c5b36c3 commit 2c9cd97

File tree

7 files changed

+10
-10
lines changed

7 files changed

+10
-10
lines changed

.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.6-rc VARIANT=
6-
- VERSION=3.6-rc VARIANT=slim
7-
- VERSION=3.6-rc VARIANT=alpine
5+
- VERSION=3.6 VARIANT=
6+
- VERSION=3.6 VARIANT=slim
7+
- VERSION=3.6 VARIANT=alpine
88
- VERSION=3.5 VARIANT=
99
- VERSION=3.5 VARIANT=slim
1010
- VERSION=3.5 VARIANT=alpine

3.6-rc/Dockerfile renamed to 3.6/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.6.0rc2
23+
ENV PYTHON_VERSION 3.6.0
2424

2525
# if this is called "PIP_VERSION", pip explodes with "ValueError: invalid truth value '<VERSION>'"
2626
ENV PYTHON_PIP_VERSION 9.0.1

3.6-rc/alpine/Dockerfile renamed to 3.6/alpine/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.6.0rc2
21+
ENV PYTHON_VERSION 3.6.0
2222

2323
# if this is called "PIP_VERSION", pip explodes with "ValueError: invalid truth value '<VERSION>'"
2424
ENV PYTHON_PIP_VERSION 9.0.1

3.6-rc/onbuild/Dockerfile renamed to 3.6/onbuild/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# PLEASE DO NOT EDIT IT DIRECTLY.
55
#
66

7-
FROM python:3.6-rc
7+
FROM python:3.6
88

99
RUN mkdir -p /usr/src/app
1010
WORKDIR /usr/src/app

3.6-rc/slim/Dockerfile renamed to 3.6/slim/Dockerfile

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

2424
ENV GPG_KEY 0D96DF4D4110E5C43FBFB17F2D347EA6AA65421D
25-
ENV PYTHON_VERSION 3.6.0rc2
25+
ENV PYTHON_VERSION 3.6.0
2626

2727
# if this is called "PIP_VERSION", pip explodes with "ValueError: invalid truth value '<VERSION>'"
2828
ENV PYTHON_PIP_VERSION 9.0.1

3.6-rc/windows/windowsservercore/Dockerfile renamed to 3.6/windows/windowsservercore/Dockerfile

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

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

11-
ENV PYTHON_VERSION 3.6.0rc2
11+
ENV PYTHON_VERSION 3.6.0
1212
ENV PYTHON_RELEASE 3.6.0
1313

1414
# if this is called "PIP_VERSION", pip explodes with "ValueError: invalid truth value '<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 -eu
33

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

0 commit comments

Comments
 (0)