File tree Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change 1
1
from .compilers .C import base
2
2
from .compilers .C .base import (
3
+ # `_default_compilers` is needed by numpy.distutils, which is supported until
4
+ # Python 3.11 is deprecated. This import & export can be removed when
5
+ # Python 3.11 is no longer supported by distutils.
6
+ _default_compilers ,
3
7
compiler_class ,
4
8
gen_lib_options ,
5
9
gen_preprocess_options ,
6
10
get_default_compiler ,
7
11
new_compiler ,
8
12
show_compilers ,
9
- _default_compilers ,
10
13
)
11
14
from .compilers .C .errors import CompileError , LinkError
12
15
13
16
__all__ = [
14
17
"CompileError" ,
15
18
"LinkError" ,
19
+ "_default_compilers" ,
16
20
"compiler_class" ,
17
21
"gen_lib_options" ,
18
22
"gen_preprocess_options" ,
19
23
"get_default_compiler" ,
20
24
"new_compiler" ,
21
25
"show_compilers" ,
22
- "_default_compilers" ,
23
26
]
24
27
25
28
You can’t perform that action at this time.
0 commit comments