File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -62,7 +62,7 @@ def error(*msg):
62
62
def blosc_extension ():
63
63
info ('setting up Blosc extension' )
64
64
65
- extra_compile_args = base_compile_args . copy ( )
65
+ extra_compile_args = list ( base_compile_args )
66
66
define_macros = []
67
67
68
68
# setup blosc sources
@@ -133,7 +133,7 @@ def zstd_extension():
133
133
info ('setting up Zstandard extension' )
134
134
135
135
zstd_sources = []
136
- extra_compile_args = base_compile_args . copy ( )
136
+ extra_compile_args = list ( base_compile_args )
137
137
include_dirs = []
138
138
define_macros = []
139
139
@@ -172,7 +172,7 @@ def zstd_extension():
172
172
def lz4_extension ():
173
173
info ('setting up LZ4 extension' )
174
174
175
- extra_compile_args = base_compile_args . copy ( )
175
+ extra_compile_args = list ( base_compile_args )
176
176
define_macros = []
177
177
178
178
# setup sources - use LZ4 bundled in blosc
@@ -205,7 +205,7 @@ def lz4_extension():
205
205
def compat_extension ():
206
206
info ('setting up compat extension' )
207
207
208
- extra_compile_args = base_compile_args . copy ( )
208
+ extra_compile_args = list ( base_compile_args )
209
209
210
210
if have_cython :
211
211
sources = ['numcodecs/compat_ext.pyx' ]
You can’t perform that action at this time.
0 commit comments