We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3a21887 commit 99590f0Copy full SHA for 99590f0
.travis.yml
@@ -0,0 +1,21 @@
1
+notifications:
2
+ email: false
3
+
4
+matrix:
5
+ include:
6
+ - sudo: required
7
+ services:
8
+ - docker
9
+ env: DOCKER_IMAGE=quay.io/pypa/manylinux1_x86_64
10
11
12
13
+ env: DOCKER_IMAGE=quay.io/pypa/manylinux1_i686
14
+ PRE_CMD=linux32
15
16
+install:
17
+ - docker pull $DOCKER_IMAGE
18
19
+script:
20
+ - docker run --rm -v `pwd`:/io $DOCKER_IMAGE $PRE_CMD /io/.travis/build-linux-wheels.sh
21
+ - ls wheelhouse/
.travis/build-linux-wheels.sh
@@ -0,0 +1,10 @@
+#!/bin/bash
+set -e -x
+# Compile wheels
+for PYBIN in /opt/python/*/bin; do
+ if [ $(echo "${PYBIN}" | grep -o '[[:digit:]][[:digit:]]' | head -n 1) -ge 33 ]; then
+ # typed_ast only builds on Python 3.3 and newer
+ "${PYBIN}/pip" wheel /io/ -w wheelhouse/
+ fi
+done
0 commit comments