-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
10 additions
and
2 deletions.
There are no files selected for viewing
This file contains 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
7a9985a
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yea we were looking for an alternative to bazel and found this has actually helped us remove bazel for our python wheels as internal dependencies
7a9985a
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Interesting! Okay I'll update the README again to emphasise that it's not needed for Docker but still useful for builds. And I'll spend a bit of time time making sure everything more or less works.
Happy to hear about anything that's not working for you, or would be more useful or whatever. Can't promise I'll get to anything very quickly but would like this project to be useful if it's going to stay around.
7a9985a
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yeah, we were a pipenv where bazel and pipenv had that, but we went to uv for our faster builds, and we deploy the wheels into databricks, and since our libraries are not wheels they are packaged into the wheels. That's where bazel came in, but we had to match our deps on bazel with the pyproject. So this kinda solved our issue and removed any complexity with bazel since it's a very niche thing to learn for some of our new developers. Thank you for this project as well