We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cca1dc2 commit 1e39921Copy full SHA for 1e39921
mypyc/build.py
@@ -41,7 +41,8 @@
41
from mypyc.ir.pprint import format_modules
42
from mypyc.namegen import exported_name
43
from mypyc.options import CompilerOptions
44
-import mypyc.build_setup
+import mypyc.build_setup # noqa: F401
45
+
46
47
class ModDesc(NamedTuple):
48
module: str
mypyc/build_setup.py
@@ -8,9 +8,9 @@
8
9
if sys.version_info >= (3, 12):
10
# From setuptools' monkeypatch
11
- from distutils import ccompiler, sysconfig # type: ignore[import-not-found]
+ from distutils import ccompiler # type: ignore[import-not-found]
12
else:
13
- from distutils import ccompiler, sysconfig
+ from distutils import ccompiler
14
15
EXTRA_FLAGS_PER_COMPILER_TYPE_PER_PATH_COMPONENT = {
16
"unix": {
0 commit comments