File tree Expand file tree Collapse file tree 2 files changed +5
-18
lines changed Expand file tree Collapse file tree 2 files changed +5
-18
lines changed Original file line number Diff line number Diff line change 25
25
" env " : " BUILD=style" ,
26
26
" python " : " 3.6"
27
27
},
28
- {
29
- " env " : " BUILD=test DAV_SERVER=radicale REQUIREMENTS=devel " ,
30
- " python " : " 3.5"
31
- },
32
- {
33
- " env " : " BUILD=test DAV_SERVER=xandikos REQUIREMENTS=devel " ,
34
- " python " : " 3.5"
35
- },
36
28
{
37
29
" env " : " BUILD=test DAV_SERVER=radicale REQUIREMENTS=release " ,
38
30
" python " : " 3.5"
49
41
" env " : " BUILD=test DAV_SERVER=xandikos REQUIREMENTS=minimal " ,
50
42
" python " : " 3.5"
51
43
},
52
- {
53
- " env " : " BUILD=test DAV_SERVER=radicale REQUIREMENTS=devel " ,
54
- " python " : " 3.6"
55
- },
56
- {
57
- " env " : " BUILD=test DAV_SERVER=xandikos REQUIREMENTS=devel " ,
58
- " python " : " 3.6"
59
- },
60
44
{
61
45
" env " : " BUILD=test DAV_SERVER=radicale REQUIREMENTS=release " ,
62
46
" python " : " 3.6"
Original file line number Diff line number Diff line change 39
39
})
40
40
41
41
42
- for python , requirements in itertools .product (python_versions ,
43
- ("devel" , "release" , "minimal" )):
42
+ for python , requirements in itertools .product (
43
+ python_versions ,
44
+ # XXX: Use `devel` here for recent python versions:
45
+ ("release" , "minimal" )
46
+ ):
44
47
dav_servers = ("radicale" , "xandikos" )
45
48
46
49
if python == latest_python and requirements == "release" :
You can’t perform that action at this time.
0 commit comments