File tree Expand file tree Collapse file tree 2 files changed +4
-31
lines changed Expand file tree Collapse file tree 2 files changed +4
-31
lines changed Original file line number Diff line number Diff line change @@ -29,9 +29,6 @@ script:
29
29
jobs :
30
30
# need to explictly define each builder for test due to different os types
31
31
include :
32
- - stage : test
33
- env : DISTRO=debian:stable PYTHON="2"
34
-
35
32
- stage : test
36
33
env : DISTRO=debian:stable PYTHON="3" # 3.4, not 3.5
37
34
@@ -45,32 +42,22 @@ jobs:
45
42
- stage : test
46
43
env : DISTRO=fedora:latest PYTHON="3" FLAKE="yes"
47
44
48
- - stage : test
49
- env : DISTRO=fedora:latest PYTHON="2"
50
-
51
45
- &osx_test
52
46
stage : test
53
- env : PYTHON="2 " KRB5_VER="heimdal" PYENV="2.7.14 "
47
+ env : PYTHON="3 " KRB5_VER="heimdal" PYENV="3.6.3 "
54
48
os : osx
55
49
osx_image : xcode9.2
56
50
language : generic # causes issues with pyenv installer when set to python
57
51
58
- - << : *osx_test
59
- env : PYTHON="3" KRB5_VER="heimdal" PYENV="3.6.3"
60
-
61
52
- &win_test
62
53
stage : test
63
- env : PYTHON="2 " PYENV="2 .7.16" EXTRA_BUILDEXT="--compiler=mingw32 "
54
+ env : PYTHON="3 " PYENV="3 .7.3 "
64
55
os : windows
65
56
language : sh # Windows not supported yet
66
57
67
58
- << : *win_test
68
59
env : PYTHON="3" PYENV="3.6.8"
69
60
70
- - << : *win_test
71
- env : PYTHON="3" PYENV="3.7.3"
72
-
73
-
74
61
- stage : deploy latest docs
75
62
script : skip
76
63
env :
88
75
on :
89
76
all_branches : true
90
77
91
-
92
78
- stage : deploy
93
79
script : skip
94
80
env :
@@ -135,17 +121,11 @@ jobs:
135
121
- ./.travis/before-deploy-windows-wheels.sh
136
122
- ./.travis/deploy-win.sh
137
123
env :
138
- - PYTHON="2"
139
- - PYENV="2.7.16"
140
- - EXTRA_BUILDEXT="--compiler=mingw32"
124
+ - PYTHON="3"
125
+ - PYENV="3.7.3"
141
126
language : sh # Travis doesn't support python here
142
127
143
128
- << : *win_deploy
144
129
env :
145
130
- PYTHON="3"
146
131
- PYENV="3.6.8"
147
-
148
- - << : *win_deploy
149
- env :
150
- - PYTHON="3"
151
- - PYENV="3.7.3"
Original file line number Diff line number Diff line change @@ -83,13 +83,6 @@ setup::windows::install() {
83
83
# Update path to include them
84
84
export PATH=" $PYPATH :$PYPATH /Scripts:/c/Program Files/MIT/Kerberos/bin:$PATH "
85
85
86
- if [ " ${PYENV: 0: 1} " == " 2" ]; then
87
- choco install vcredist2008
88
- # Skip dotnet dependency:
89
- # https://github.com/fredrikaverpil/vcpython27/pull/3
90
- choco install --ignore-dependencies vcpython27
91
- fi
92
-
93
86
python -m pip install --upgrade pip
94
87
}
95
88
You can’t perform that action at this time.
0 commit comments