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 dc8a37f commit 209ad7eCopy full SHA for 209ad7e
relenv/runtime.py
@@ -1270,3 +1270,8 @@ def bootstrap() -> None:
1270
setup_crossroot()
1271
install_cargo_config()
1272
sys.meta_path = [importer] + sys.meta_path
1273
+
1274
+ # For Python 3.13+, sysconfig became a package so the importer doesn't
1275
+ # intercept it. Manually wrap it here.
1276
+ if sys.version_info >= (3, 13):
1277
+ wrap_sysconfig("sysconfig")
0 commit comments