File tree 4 files changed +4
-4
lines changed 4 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 1
1
cluster_hdbscan_extension_metadata = {
2
2
' _linkage' : {' sources' : [cython_gen.process(' _linkage.pyx' ), metrics_cython_tree]},
3
3
' _reachability' : {' sources' : [cython_gen.process(' _reachability.pyx' )]},
4
- ' _tree' : {' sources' : [' _tree.pyx' ]}
4
+ ' _tree' : {' sources' : [cython_gen.process( ' _tree.pyx' ) ]}
5
5
}
6
6
7
7
foreach ext_name, ext_dict : cluster_hdbscan_extension_metadata
Original file line number Diff line number Diff line change @@ -219,7 +219,7 @@ extensions = ['_isotonic']
219
219
220
220
py.extension_module(
221
221
' _isotonic' ,
222
- ' _isotonic.pyx' ,
222
+ cython_gen.process( ' _isotonic.pyx' ) ,
223
223
cython_args : cython_args,
224
224
install : true ,
225
225
subdir : ' sklearn' ,
Original file line number Diff line number Diff line change @@ -39,7 +39,7 @@ neighbors_extension_metadata = {
39
39
' _partition_nodes' :
40
40
{' sources' : [cython_gen_cpp.process(' _partition_nodes.pyx' )],
41
41
' dependencies' : [np_dep]},
42
- ' _quad_tree' : {' sources' : [' _quad_tree.pyx' ], ' dependencies' : [np_dep]},
42
+ ' _quad_tree' : {' sources' : [cython_gen.process( ' _quad_tree.pyx' ) ], ' dependencies' : [np_dep]},
43
43
}
44
44
45
45
foreach ext_name, ext_dict : neighbors_extension_metadata
Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ utils_extension_metadata = {
20
20
' _cython_blas' : {' sources' : [cython_gen.process(' _cython_blas.pyx' )]},
21
21
' arrayfuncs' : {' sources' : [cython_gen.process(' arrayfuncs.pyx' )]},
22
22
' murmurhash' : {
23
- ' sources' : [' murmurhash.pyx' , ' src' / ' MurmurHash3.cpp' ],
23
+ ' sources' : [cython_gen.process( ' murmurhash.pyx' ) , ' src' / ' MurmurHash3.cpp' ],
24
24
},
25
25
' _fast_dict' :
26
26
{' sources' : [cython_gen_cpp.process(' _fast_dict.pyx' )]},
You can’t perform that action at this time.
0 commit comments