File tree Expand file tree Collapse file tree 1 file changed +43
-0
lines changed Expand file tree Collapse file tree 1 file changed +43
-0
lines changed Original file line number Diff line number Diff line change
1
+ sudo : false
2
+
3
+ env :
4
+ global :
5
+ - NUMPY=numpy
6
+ - TEST_ARGS=--no-pep8
7
+
8
+ language : python
9
+
10
+ matrix :
11
+ include :
12
+ - python : 2.6
13
+ env : NUMPY=numpy==1.6
14
+ - python : 2.7
15
+ - python : 3.3
16
+ - python : 3.4
17
+ - python : 3.5
18
+ # - python: 2.7
19
+ # env: TEST_ARGS=--pep8
20
+
21
+ before_install :
22
+ # Install into our own pristine virtualenv
23
+ - virtualenv --python=python venv
24
+ - source venv/bin/activate
25
+
26
+ install :
27
+ # Upgrade pip and setuptools. Mock has issues with the default version of
28
+ # setuptools
29
+ - |
30
+ pip install --upgrade pip
31
+ pip install --upgrade setuptools
32
+ pip install $NUMPY
33
+ - cd geos-3.3.3
34
+ export GEOS_DIR=$HOME/.local/
35
+ ./configure --prefix=$GEOS_DIR
36
+ make; make install
37
+ cd ..
38
+ # - pip install pep8
39
+ - python setup.py install
40
+
41
+ script :
42
+ - python lib/mpl_toolkits/basemap/test.py
43
+
You can’t perform that action at this time.
0 commit comments