-
-
Notifications
You must be signed in to change notification settings - Fork 30.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
gh-123085: _compile_importlib: Avoid copying sources before compilation #124131
Conversation
This now doesn't copy resources of |
!buildbot fedora |
🤖 New build scheduled with the buildbot fleet by @encukou for commit cade8d2 🤖 The command will test the builders whose names match following regular expression: The builders matched are:
|
!buildbot fedora |
🤖 New build scheduled with the buildbot fleet by @jaraco for commit 8cd8fe9 🤖 The command will test the builders whose names match following regular expression: The builders matched are:
|
I pushed a new commit to trim down the logic substantially. Let me know what you think. |
Looks good, thank you! |
I cherry-picked the change to python/importlib_resources@cc5d9cbb6e. |
…pilation (pythonGH-124131) Co-authored-by: Jason R. Coombs <[email protected]>
Make the test helper compile directly from the “installed” sources.
This should avoid doing some unnecessary work, as well as possible issues in copying too much/too little metadata to a different filesystem. Hopefully, it'll fix the buildbot failure.