-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy path.travis.yml
83 lines (71 loc) · 1.68 KB
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
# sudo: false
language: python
python:
# - '3.5'
# - '3.6'
- '3.7'
env:
- ENV_STRING=master
# - ENV_STRING=pandas0.24.1
# - ENV_STRING=pandas0.24.0
#
# - ENV_STRING=pandas0.23.4
# - ENV_STRING=pandas0.23.3
# - ENV_STRING=pandas0.23.2
# - ENV_STRING=pandas0.23.1
# - ENV_STRING=pandas0.23.0
#
# - ENV_STRING=pandas0.22.0
#
# - ENV_STRING=pandas0.21.1
# - ENV_STRING=pandas0.21.0
#
# - ENV_STRING=pandas0.20.3
# - ENV_STRING=pandas0.20.2
# - ENV_STRING=pandas0.20.1
# - ENV_STRING=pandas0.20.0
#
# - ENV_STRING=pandas0.19.2
# - ENV_STRING=pandas0.19.1
# - ENV_STRING=pandas0.19.0
#
# - ENV_STRING=pyspark2.4.0
# - ENV_STRING=pyspark2.3.1
# - ENV_STRING=dask1.1.5
# Remove python/pandas version interactions which do not have wheels on pypi
matrix:
exclude:
- python: '3.7'
env: ENV_STRING=pandas0.22.0
- python: '3.7'
env: ENV_STRING=pandas0.21.1
- python: '3.7'
env: ENV_STRING=pandas0.21.0
- python: '3.7'
env: ENV_STRING=pandas0.20.3
- python: '3.7'
env: ENV_STRING=pandas0.20.2
- python: '3.7'
env: ENV_STRING=pandas0.20.1
- python: '3.7'
env: ENV_STRING=pandas0.20.0
- python: '3.7'
env: ENV_STRING=pandas0.19.2
- python: '3.7'
env: ENV_STRING=pandas0.19.1
- python: '3.7'
env: ENV_STRING=pandas0.19.0
- python: '3.6'
env: ENV_STRING=pandas0.19.0
dist: xenial
before_install:
- source travisci/java_install.sh
install:
- travis_retry pip install --upgrade pip
- travis_retry pip install --upgrade setuptools
- travis_retry pip install codecov flake8 tox
script:
- source travisci/tox_invocation.sh
after_success:
- source travisci/code_coverage.sh
cache: pip