Commit cc77a56b authored by riddell1's avatar riddell1 Committed by Matthew Brett
Browse files

Add support for Python 3.6

Fixes #14.
parent 93ec5108
...@@ -11,7 +11,7 @@ These scripts are designed to build *and test*: ...@@ -11,7 +11,7 @@ These scripts are designed to build *and test*:
* 64-bit manylinux1_x86_64 wheels, both narrow and wide unicode builds; * 64-bit manylinux1_x86_64 wheels, both narrow and wide unicode builds;
* 32-bit manylinux1_i686 wheels, both narrow and wide unicode builds. * 32-bit manylinux1_i686 wheels, both narrow and wide unicode builds.
You can currently build and test against Pythons 2.6, 2.7, 3.3, 3.4, 3.5. You can currently build and test against Pythons 2.6, 2.7, 3.3, 3.4, 3.5, 3.6.
The small innovation here is that you can test against 32-bit builds, and both The small innovation here is that you can test against 32-bit builds, and both
wide and narrow unicode Python 2 builds, which was not easy on the default wide and narrow unicode Python 2 builds, which was not easy on the default
...@@ -230,6 +230,13 @@ To use these scripts ...@@ -230,6 +230,13 @@ To use these scripts
env: env:
- MB_PYTHON_VERSION=3.5 - MB_PYTHON_VERSION=3.5
- PLAT=i686 - PLAT=i686
- os: linux
env:
- MB_PYTHON_VERSION=3.6
- os: linux
env:
- MB_PYTHON_VERSION=3.6
- PLAT=i686
- os: osx - os: osx
language: generic language: generic
env: env:
...@@ -242,6 +249,10 @@ To use these scripts ...@@ -242,6 +249,10 @@ To use these scripts
language: generic language: generic
env: env:
- MB_PYTHON_VERSION=3.5 - MB_PYTHON_VERSION=3.5
- os: osx
language: generic
env:
- MB_PYTHON_VERSION=3.6
before_install: before_install:
- source multibuild/common_utils.sh - source multibuild/common_utils.sh
......
...@@ -30,6 +30,12 @@ environment: ...@@ -30,6 +30,12 @@ environment:
- PYTHON: "C:\\Miniconda35-x64" - PYTHON: "C:\\Miniconda35-x64"
PYTHON_VERSION: "3.5" PYTHON_VERSION: "3.5"
PYTHON_ARCH: "64" PYTHON_ARCH: "64"
- PYTHON: "C:\\Miniconda36"
PYTHON_VERSION: "3.6"
PYTHON_ARCH: "32"
- PYTHON: "C:\\Miniconda36-x64"
PYTHON_VERSION: "3.6"
PYTHON_ARCH: "64"
# We always use a 64-bit machine, but can build x86 distributions # We always use a 64-bit machine, but can build x86 distributions
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment