Fix wheel builds not containing any src/ files#113
Open
solidDoWant wants to merge 1 commit into
Open
Conversation
Signed-off-by: solidDoWant <fred.heinecke@yahoo.com>
Owner
|
Hey, can you give some context about what problem this change solves and what motivated the fix? I understand that the build wheel was empty, but why do you need to build a wheel in the first place? |
Contributor
Author
|
I'm building my own openarc images using a very different approach compared to the dockerfile for this project. This approach requires producing wheels, whose contents make up dockerfile layers. I'm also heavily considering using openarc as an in-process dependency (rather than a separate service) for a project I'm working on, which would have similar build requirements. |
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.
Clean wheel builds (
rm -rf dist/ OpenArc.egg-info/ build/ && uv build --wheel --no-sources) currently contain no actual project files, just metadata:This fixes the project config to include modules under
src/:I also added a couple of missing items to
.gitignore.