fix: resolve wheel build collisions by refining package paths - #654
Merged
Conversation
Signed-off-by: Benjamin Petrick <170433522+BenjPetr@users.noreply.github.com>
Contributor
There was a problem hiding this comment.
Pull request overview
This PR updates the root Hatch wheel-build configuration to avoid file collisions during monorepo wheel creation by scoping the wheel’s included packages to the concrete toop_engine_* package directories (instead of each package’s generic src/ root).
Changes:
- Refines
[tool.hatch.build.targets.wheel].packagesto point atpackages/*_pkg/src/toop_engine_*directories explicitly. - Prevents accidental inclusion of non-package root files (e.g.,
src/__init__.py, helper scripts) that can collide or be unintentionally bundled.
spetznick-elia
approved these changes
Jul 29, 2026
BenjPetr
enabled auto-merge (squash)
July 29, 2026 12:33
|
6 tasks
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.





Signed-off-by: Benjamin Petrick 170433522+BenjPetr@users.noreply.github.com
Checklist
Please check if the PR fulfills these requirements:
Does this PR already have an issue describing the problem?
No
What is the new behavior (if this is a feature change)?
This PR corrects the pyproject.toml configuration to prevent build failures during wheel creation. It explicitly maps each sub-package to its specific source directory instead of the generic src parent folders.
Changes:
Does this PR introduce a breaking change?