blob: 68149b4deb391286af34df2ad8a295733f1d41c1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
language: python
os:
- linux
- osx
python:
- "pypy"
- "2.6"
- "2.7"
- "3.2"
- "3.3"
install:
# Install the wheel library explicitly here. It is not really a setup
# dependency. It is not an install dependency. It is only a dependency for
# the script directive below - because we want to exercise wheel building on
# travis.
- pip install wheel
script:
- python setup.py bdist_wheel test
|