Skip to content

Commit 27e5dd2

Browse files
committed
Support travis check for pybind11
1 parent 2c1b6e1 commit 27e5dd2

File tree

1 file changed

+19
-7
lines changed

1 file changed

+19
-7
lines changed

.travis.yml

+19-7
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,24 @@
11
language: python
22

3-
python:
4-
- 2.7
5-
- 3.4
6-
- 3.5
7-
- 3.6
8-
- 3.7
9-
- pypy
3+
# python:
4+
# - 2.7
5+
# - 3.4
6+
# - 3.5
7+
# - 3.6
8+
# - 3.7
9+
# - pypy
10+
matrix:
11+
include:
12+
- os: linux
13+
compiler: gcc
14+
addons: &gcc49
15+
apt:
16+
sources: ['ubuntu-toolchain-r-test']
17+
packages: ['g++-4.9', 'gcc-4.9']
18+
env:
19+
- CXX='g++-4.9'
20+
- CC='gcc-4.9'
21+
python: 3.4
1022

1123
install:
1224
- pip install .[performance]

0 commit comments

Comments
 (0)