-
Notifications
You must be signed in to change notification settings - Fork 15
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
Clean up build #64
Clean up build #64
Conversation
due to imp vs. importlib changes needed
Your pull request is automatically being deployed to Dagster Cloud.
|
@@ -6,9 +6,6 @@ clean: | |||
rm -rf ~/.dagster_home; mkdir ~/.dagster_home; cp dagster.yaml ~/.dagster_home/dagster.yaml | |||
|
|||
manifest: |
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.
This command is run in the context of the GHA runner in order to build the manifest, so these installs are necessary.
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 I realized that too late -- that said, I'd prefer to put the commands in the GHA vs. in the make file (since you might run make manifest
in the context of local dev, in which case we don't need the pip installs (handled via the setup.py
)
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.
LGTM - Sorry for the long delay (I will be better about these going forwrad!)
this PR does a bunch of small things to the build process for the hooli project:
uv
as the package installer (should ~halve the build time)setup.py
to <3.12, in part because there are issues loading Dagster on 3.12 that I didn't investigate