Skip to content

Commit 34b06f4

Browse files
authored
Merge pull request #328 from bird-house/issue-327-fix-travis-gdal
Fix #327: install gdal=2 from ubuntugis repo
2 parents fbf658e + 20c4ac3 commit 34b06f4

File tree

1 file changed

+12
-16
lines changed

1 file changed

+12
-16
lines changed

.travis.yml

Lines changed: 12 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -5,30 +5,26 @@ dist: trusty
55

66
python:
77
- "2.7"
8-
- "3.5"
8+
- "3.6"
99

1010
git:
1111
submodules: false
1212

1313
addons:
1414
apt:
15+
sources:
16+
- sourceline: 'ppa:ubuntugis/ppa'
1517
packages:
1618
- gdal-bin
1719
- libgdal-dev
18-
- libgdal1h
19-
- libgdal1-dev
20-
- libgeos-dev
21-
- devscripts
22-
- debhelper
23-
- python-setuptools
2420

2521
# Handle Git submodules yourself
2622
git:
2723
submodules: false
2824

2925
install:
3026
- pip install pip --upgrade
31-
- pip install .
27+
- pip install -r requirements.txt
3228
- pip install -r requirements-gdal.txt
3329
- pip install -r requirements-dev.txt
3430
- pip install coveralls
@@ -43,11 +39,11 @@ after_success:
4339
- debuild -b -uc -us
4440

4541
# whitelist
46-
branches:
47-
only:
48-
- master
49-
50-
notifications:
51-
irc:
52-
channels:
53-
- "irc.freenode.org#geopython"
42+
# branches:
43+
# only:
44+
# - master
45+
46+
# notifications:
47+
# irc:
48+
# channels:
49+
# - "irc.freenode.org#geopython"

0 commit comments

Comments
 (0)