12
12
addons :
13
13
apt :
14
14
packages :
15
- - libgeos-3.4.2
15
+ - libgeos-3.5.0
16
16
# matplotlib requirements
17
17
- libpng12-dev
18
18
- libfreetype6-dev
@@ -33,42 +33,21 @@ cache:
33
33
# matrix generates 6 test cases
34
34
matrix :
35
35
include :
36
- # "minimum requirements" environments
37
- # test the bare minimum versions
38
- # compiles internal libgeos
39
- # Notes:
40
- # numpy 1.7.0 is the first version that works out of the box for Python 2.6 and 3.3
41
- # numpy 1.5.1 is the earliest version to compile and *might* be able to work on Python 2.6,
42
- # if two unit tests are skipped due to numpy.copy(a,order) not having 'order' parameter
43
- # 1.6.0-1.6.2 works out of the box for Python 2.6
44
- # matplotlib 1.2.0 was found to be the earliest version that installs
45
- - python : 2.6
46
- env :
47
- - NUMPY=numpy==1.7.0
48
- - MPL=matplotlib==1.2.0
49
- - BUILD_LIBGEOS=internal
50
-
51
- # "middle of the road" environment
52
- # use prepackaged binaries
53
- # if no prepackaged binary available, use a previous stable version
54
- - python : 3.4
55
- env :
56
- - MPL=matplotlib==1.4.3
57
- - NUMPY=numpy==1.9.3
58
- - BUILD_LIBGEOS=internal
59
-
60
36
# "latest and greatest" stable environments
61
37
# this uses the current stable versions
62
38
# pip installs latest stable versions automatically
63
39
- python : 2.7
64
40
env :
65
41
- BUILD_LIBGEOS=3.5.1
66
- - python : 3.5
67
- env :
68
- - BUILD_LIBGEOS=3.5.1
69
42
- python : 3.6
70
43
env :
71
44
- BUILD_LIBGEOS=3.6.1
45
+ - python : 3.7
46
+ env :
47
+ - BUILD_LIBGEOS=3.6.1
48
+ - python : 3.8
49
+ env :
50
+ - BUILD_LIBGEOS=3.6.1
72
51
73
52
# "current development" environment
74
53
# this test is diagnostic for development versions and is not required to pass
@@ -106,9 +85,6 @@ install:
106
85
- pip install $PYPROJ
107
86
- pip install -r requirements.txt
108
87
109
- # extra requirements to support Python 2.6
110
- - if [[ $TRAVIS_PYTHON_VERSION == '2.6' ]]; then pip install -r .requirements-2.6.txt; fi
111
-
112
88
- |
113
89
# Is libgeos suppose to be built?
114
90
if [[ $BUILD_LIBGEOS != 'false' ]]; then
0 commit comments