-
Notifications
You must be signed in to change notification settings - Fork 68
/
.travis.yml
53 lines (53 loc) · 1.12 KB
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
sudo: true # required until https://github.com/travis-ci/travis-ci/issues/9069 gets resolved
dist: xenial
language: python
python:
- "2.7"
- "3.7"
- "3.8"
- "3.9"
matrix:
include:
- os: linux
python: 2.7
- os: linux
python: 3.7
- os: linux
python: 3.8
- os: linux
python: 3.9
- os: osx
osx_image: xcode7.3
language: objective-c
env: TRAVIS_PYTHON_VERSION=2.7
- os: osx
osx_image: xcode7.3
language: objective-c
env: TRAVIS_PYTHON_VERSION=3.7
- os: osx
osx_image: xcode7.3
language: objective-c
env: TRAVIS_PYTHON_VERSION=3.8
- os: osx
osx_image: xcode7.3
language: objective-c
env: TRAVIS_PYTHON_VERSION=3.9
before_install:
- df -h
- date
- pwd
- uname -a
- source tools/travis_section_def.sh
- source tools/travis_before_install.sh
- which python; python --version
- tools/build_versions.py
install:
- section build
- python setup.py clean
- python setup.py build_ext -i
- section_end build
script: tools/travis.sh
notifications:
email:
on_success: change
on_failure: change