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
96 changes: 0 additions & 96 deletions python-interpreter-builder/patches/3.6/double-build.diff

This file was deleted.

1 change: 0 additions & 1 deletion python-interpreter-builder/patches/3.6/series

This file was deleted.

14 changes: 6 additions & 8 deletions python-interpreter-builder/scripts/build-python-3.6.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,16 +6,14 @@ set -x
# Get the source
mkdir -p /opt/sources
cd /opt/sources
wget --no-verbose https://www.python.org/ftp/python/3.6.1/Python-3.6.1.tgz
wget --no-verbose https://www.python.org/ftp/python/3.6.2/Python-3.6.2.tgz
# SHA-256 generated via `shasum -a 256 [file]`
shasum --check <<EOF
aa50b0143df7c89ce91be020fe41382613a817354b33acdc6641b44f8ced3828 Python-3.6.1.tgz
7919489310a5f17f7acbab64d731e46dca0702874840dadce8bd4b2b3b8e7a82 Python-3.6.2.tgz
EOF
tar xzf Python-3.6.1.tgz
tar xzf Python-3.6.2.tgz

# Apply patches
cd Python-3.6.1
QUILT_PATCHES=/patches/3.6 quilt push -a
cd Python-3.6.2

# Explanation of flags:
#
Expand Down Expand Up @@ -147,5 +145,5 @@ find "$PREFIX"/lib/python3.6/test \

# Clean-up sources
cd /opt
rm /opt/sources/Python-3.6.1.tgz
rm -r /opt/sources/Python-3.6.1
rm /opt/sources/Python-3.6.2.tgz
rm -r /opt/sources/Python-3.6.2
2 changes: 1 addition & 1 deletion tests/virtualenv/virtualenv_python36.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ commandTests:

- name: "python version"
command: ["python", "--version"]
expectedOutput: ["Python 3.6.1\n"]
expectedOutput: ["Python 3.6.2\n"]

- name: "pip installation"
command: ["which", "pip"]
Expand Down