]> git.k1024.org Git - pylibacl.git/blob - .travis.yml
Travis: more reworking of Py3.7 support…
[pylibacl.git] / .travis.yml
1 language: python
2
3 python:
4   - "2.7"
5   - "3.2"
6   - "3.3"
7   - "3.4"
8   - "3.5"
9   - "3.6"
10   - "nightly"
11
12 matrix:
13   include:
14     - dist: xenial
15       python:
16         - "2.7"
17         - "3.6"
18         - "3.7"
19         - "nightly"
20
21 # we don't need any python dependencies:
22 install: true
23
24 # the test command:
25 script: python ./setup.py test
26
27 # but we do need a system library:
28 addons:
29   apt:
30     packages:
31       - libacl1-dev