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 b3f17d2 commit b6a539aCopy full SHA for b6a539a
distutils/unixccompiler.py
@@ -1,3 +1,9 @@
1
+import importlib
2
+
3
from .compilers.C import unix
4
5
UnixCCompiler = unix.Compiler
6
7
+# ensure import of unixccompiler implies ccompiler imported
8
+# (pypa/setuptools#4871)
9
+importlib.import_module('distutils.ccompiler')
newsfragments/4871.bugfix.rst
@@ -0,0 +1 @@
+Restored implicit distutils.ccompiler import for g-ir-scanner.
0 commit comments