📦 Implement PEP 517 setting for in-place builds#1590
Merged
webknjaz merged 2 commits intoaio-libs:masterfrom Oct 30, 2025
Merged
📦 Implement PEP 517 setting for in-place builds#1590webknjaz merged 2 commits intoaio-libs:masterfrom
webknjaz merged 2 commits intoaio-libs:masterfrom
Conversation
This was referenced Oct 28, 2025
CodSpeed Performance ReportMerging #1590 will not alter performanceComparing Summary
|
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## master #1590 +/- ##
=======================================
Coverage 99.57% 99.57%
=======================================
Files 29 29
Lines 5853 5872 +19
Branches 266 266
=======================================
+ Hits 5828 5847 +19
Misses 21 21
Partials 4 4
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
webknjaz
added a commit
to webknjaz/yarl
that referenced
this pull request
Oct 30, 2025
f3256ed to
f26fb35
Compare
This commit adds a new config setting for controlling whether to build the project in-tree or in a temporary directory. It only affects wheels and is set up to build in a temporary directory by default. It does not affect editable wheel builds — they will keep being built in-tree regardless. Example use: ```console $ python -m build \ --config-setting=build-inplace=true ``` Refs: * aio-libs/frozenlist#577 * aio-libs#1551
f56ff63 to
2e20137
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This patch adds a new config setting for controlling whether to build the project in-tree or in a temporary directory. It only affects wheels and is set up to build in a temporary directory by default. It does not affect editable wheel builds — they will keep being built in-tree regardless.
Example use:
Are there changes in behavior for the user?
This will likely only be used by downstream packagers.
Related issue number
Checklist