File tree Expand file tree Collapse file tree 5 files changed +9
-7
lines changed Expand file tree Collapse file tree 5 files changed +9
-7
lines changed Original file line number Diff line number Diff line change @@ -46,6 +46,7 @@ python:
46
46
- " 3.5"
47
47
- " 3.6"
48
48
- " 3.7"
49
+ - " 3.8"
49
50
- " nightly"
50
51
- " pypy"
51
52
- " pypy3"
@@ -55,6 +56,7 @@ matrix:
55
56
allow_failures :
56
57
- python : " 3.3"
57
58
- python : " 3.7"
59
+ - python : " 3.8"
58
60
- python : " nightly"
59
61
60
62
install :
Original file line number Diff line number Diff line change 88
88
logger .debug ('Inited libvips' )
89
89
90
90
if not API_mode :
91
- from pyvips import decls
91
+ from pyvips import vdecls
92
92
93
93
major = vips_lib .vips_version (0 )
94
94
minor = vips_lib .vips_version (1 )
100
100
'api' : False ,
101
101
}
102
102
103
- ffi .cdef (decls .cdefs (features ))
103
+ ffi .cdef (vdecls .cdefs (features ))
104
104
105
105
from .error import *
106
106
Original file line number Diff line number Diff line change @@ -60,8 +60,8 @@ def get_suffixes():
60
60
return names
61
61
62
62
63
- # we need to define this before we import the decls : they need to know which
64
- # bits of decl to make
63
+ # we need to define this before we import the declarations : they need to know
64
+ # which bits to make
65
65
def at_least_libvips (x , y ):
66
66
"""Is this at least libvips x.y?"""
67
67
Original file line number Diff line number Diff line change @@ -38,14 +38,14 @@ def modversion(package):
38
38
'api' : True ,
39
39
}
40
40
41
- from pyvips import decls
41
+ from pyvips import vdecls
42
42
43
43
# handy for debugging
44
44
#with open('vips-source.txt','w') as f:
45
- # c = decls .cdefs(features)
45
+ # c = vdecls .cdefs(features)
46
46
# f.write(c)
47
47
48
- ffibuilder .cdef (decls .cdefs (features ))
48
+ ffibuilder .cdef (vdecls .cdefs (features ))
49
49
50
50
if __name__ == "__main__" :
51
51
ffibuilder .compile (verbose = True )
File renamed without changes.
You can’t perform that action at this time.
0 commit comments