Skip to content

Update to 3.8.0 (GA) #423

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Oct 15, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ image: Visual Studio 2017

environment:
matrix:
- version: 3.8-rc
- version: 3.8
variant: windowsservercore-ltsc2016
- version: 3.7
variant: windowsservercore-ltsc2016
Expand Down
8 changes: 4 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@ matrix:
include:
- os: windows
dist: 1803-containers
env: VERSION=3.8-rc VARIANT=windows/windowsservercore-1803
env: VERSION=3.8 VARIANT=windows/windowsservercore-1803
- os: linux
env: VERSION=3.8-rc VARIANT=buster
env: VERSION=3.8 VARIANT=buster
- os: linux
env: VERSION=3.8-rc VARIANT=buster/slim
env: VERSION=3.8 VARIANT=buster/slim
- os: linux
env: VERSION=3.8-rc VARIANT=alpine3.10
env: VERSION=3.8 VARIANT=alpine3.10
- os: windows
dist: 1803-containers
env: VERSION=3.7 VARIANT=windows/windowsservercore-1803
Expand Down
2 changes: 1 addition & 1 deletion 3.8-rc/alpine3.10/Dockerfile → 3.8/alpine3.10/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ ENV LANG C.UTF-8
RUN apk add --no-cache ca-certificates

ENV GPG_KEY E3FF2839C048B25C084DEBE9B26995E310250568
ENV PYTHON_VERSION 3.8.0rc1
ENV PYTHON_VERSION 3.8.0

RUN set -ex \
&& apk add --no-cache --virtual .fetch-deps \
Expand Down
2 changes: 1 addition & 1 deletion 3.8-rc/buster/Dockerfile → 3.8/buster/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
&& rm -rf /var/lib/apt/lists/*

ENV GPG_KEY E3FF2839C048B25C084DEBE9B26995E310250568
ENV PYTHON_VERSION 3.8.0rc1
ENV PYTHON_VERSION 3.8.0

RUN set -ex \
\
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
&& rm -rf /var/lib/apt/lists/*

ENV GPG_KEY E3FF2839C048B25C084DEBE9B26995E310250568
ENV PYTHON_VERSION 3.8.0rc1
ENV PYTHON_VERSION 3.8.0

RUN set -ex \
\
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ FROM mcr.microsoft.com/windows/servercore:1803

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

ENV PYTHON_VERSION 3.8.0rc1
ENV PYTHON_VERSION 3.8.0
ENV PYTHON_RELEASE 3.8.0

RUN $url = ('https://www.python.org/ftp/python/{0}/python-{1}-amd64.exe' -f $env:PYTHON_RELEASE, $env:PYTHON_VERSION); \
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ FROM mcr.microsoft.com/windows/servercore:1809

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

ENV PYTHON_VERSION 3.8.0rc1
ENV PYTHON_VERSION 3.8.0
ENV PYTHON_RELEASE 3.8.0

RUN $url = ('https://www.python.org/ftp/python/{0}/python-{1}-amd64.exe' -f $env:PYTHON_RELEASE, $env:PYTHON_VERSION); \
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ FROM mcr.microsoft.com/windows/servercore:ltsc2016

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

ENV PYTHON_VERSION 3.8.0rc1
ENV PYTHON_VERSION 3.8.0
ENV PYTHON_RELEASE 3.8.0

RUN $url = ('https://www.python.org/ftp/python/{0}/python-{1}-amd64.exe' -f $env:PYTHON_RELEASE, $env:PYTHON_VERSION); \
Expand Down
4 changes: 2 additions & 2 deletions generate-stackbrew-library.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
set -Eeuo pipefail

declare -A aliases=(
[3.8-rc]='rc'
[3.7]='3 latest'
[3.9-rc]='rc'
[3.8]='3 latest'
[2.7]='2'
)

Expand Down