Skip to content
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.7-rc
- version: 3.7
variant: windowsservercore-ltsc2016
- version: 3.6
variant: windowsservercore-ltsc2016
Expand Down
6 changes: 3 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ language: bash
services: docker

env:
- VERSION=3.7-rc VARIANT=stretch
- VERSION=3.7-rc VARIANT=stretch/slim
- VERSION=3.7-rc VARIANT=alpine3.7
- VERSION=3.7 VARIANT=stretch
- VERSION=3.7 VARIANT=stretch/slim
- VERSION=3.7 VARIANT=alpine3.7
- VERSION=3.6 VARIANT=stretch
- VERSION=3.6 VARIANT=stretch/slim
- VERSION=3.6 VARIANT=jessie
Expand Down
2 changes: 1 addition & 1 deletion 3.7-rc/alpine3.7/Dockerfile → 3.7/alpine3.7/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 0D96DF4D4110E5C43FBFB17F2D347EA6AA65421D
ENV PYTHON_VERSION 3.7.0b5
ENV PYTHON_VERSION 3.7.0

RUN set -ex \
&& apk add --no-cache --virtual .fetch-deps \
Expand Down
2 changes: 1 addition & 1 deletion 3.7-rc/stretch/Dockerfile → 3.7/stretch/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 0D96DF4D4110E5C43FBFB17F2D347EA6AA65421D
ENV PYTHON_VERSION 3.7.0b5
ENV PYTHON_VERSION 3.7.0

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

ENV GPG_KEY 0D96DF4D4110E5C43FBFB17F2D347EA6AA65421D
ENV PYTHON_VERSION 3.7.0b5
ENV PYTHON_VERSION 3.7.0

RUN set -ex \
&& buildDeps=" \
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ FROM microsoft/windowsservercore:1709

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

ENV PYTHON_VERSION 3.7.0b5
ENV PYTHON_VERSION 3.7.0
ENV PYTHON_RELEASE 3.7.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 microsoft/windowsservercore:ltsc2016

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

ENV PYTHON_VERSION 3.7.0b5
ENV PYTHON_VERSION 3.7.0
ENV PYTHON_RELEASE 3.7.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.7-rc]='rc'
[3.6]='3 latest'
[3.8-rc]='rc'
[3.7]='3 latest'
[2.7]='2'
)

Expand Down