Skip to content

Commit 1862997

Browse files
author
Gaël UTARD
committed
Fix pysqlite version
1 parent af33688 commit 1862997

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

.travis.yml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,14 @@ matrix:
3030
env: DJANGO_VERSION=1.7.11 DATABASE=sqlite
3131
- python: 3.5
3232
env: DJANGO_VERSION=1.7.11 DATABASE=postgres
33+
- python: 3.5
34+
env: DJANGO_VERSION=1.8.14 DATABASE=sqlite
35+
- python: 3.5
36+
env: DJANGO_VERSION=1.9.9 DATABASE=sqlite
37+
- python: 3.5
38+
env: DJANGO_VERSION=1.10 DATABASE=sqlite
39+
- python: 3.5
40+
env: DJANGO_VERSION=dev DATABASE=sqlite
3341

3442
allow_failures:
3543
- python: 2.7
@@ -50,7 +58,7 @@ install:
5058
- sudo apt-get install -y libproj-dev libgeos-dev
5159

5260
- if [[ $DATABASE == sqlite ]]; then sudo apt-get install -y libspatialite-dev; fi
53-
- if [[ $TRAVIS_PYTHON_VERSION == '2.7' && $DATABASE == sqlite ]]; then pip install git+git://github.com/tinio/pysqlite.git@extension-enabled#egg=pysqlite; fi
61+
- if [[ $DATABASE == sqlite ]]; then pip install pysqlite==2.8.2; fi
5462
- if [[ $DATABASE == postgres ]]; then pip install psycopg2; fi
5563

5664
# This is a dependency of our Django test script

0 commit comments

Comments
 (0)