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 e11316c commit e9aea24Copy full SHA for e9aea24
.travis.yml
@@ -1,10 +1,33 @@
1
language: python
2
+
3
before_install:
4
- pip install pybind11
-python:
5
- - "3.5"
6
- - "3.6"
+matrix:
7
+ include:
8
+ - os: linux
9
+ compiler: gcc
10
+ addons: &gcc49
11
+ apt:
12
+ sources: ['ubuntu-toolchain-r-test']
13
+ packages: ['g++-4.9', 'gcc-4.9']
14
+ env:
15
+ - CXX='g++-4.9'
16
+ - CC='gcc-4.9'
17
+ python: 3.5
18
19
20
21
22
23
24
25
26
27
+ python: 3.6
28
29
install:
30
- python setup.py install
31
32
script:
- - python ./sectionproperties/tests/tests/test_rectangle.py
33
+ - python ./sectionproperties/tests/test_rectangle.py
0 commit comments