-
Notifications
You must be signed in to change notification settings - Fork 39
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
221 python uv #387
base: main
Are you sure you want to change the base?
221 python uv #387
Conversation
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.
Copilot reviewed 5 out of 11 changed files in this pull request and generated no comments.
Files not reviewed (6)
- examples/python/uv-api/.gitignore: Language not supported
- examples/python/uv-api/.python-version: Language not supported
- src/CommunityToolkit.Aspire.Hosting.Python.Extensions/PublicAPI.Unshipped.txt: Language not supported
- tests/CommunityToolkit.Aspire.Hosting.Python.Extensions.Tests/AppHostTests.cs: Evaluated as low risk
- examples/python/CommunityToolkit.Aspire.Hosting.Python.Extensions.AppHost/Program.cs: Evaluated as low risk
- src/CommunityToolkit.Aspire.Hosting.Python.Extensions/README.md: Evaluated as low risk
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.
do we need to ensure that uv
is installed as part of the CI job?
I think we might need to add it to the post-create.sh
file for the devcontainer too.
.WithArgs(context => | ||
{ | ||
// If the project is to be automatically instrumented, add the instrumentation executable arguments first. | ||
if (!string.IsNullOrEmpty(instrumentationExecutable)) | ||
{ | ||
AddOpenTelemetryArguments(context); | ||
|
||
// // Add the python executable as the next argument so we can run the project. | ||
// context.Args.Add(pythonExecutable!); | ||
} | ||
}); |
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.
may as well add this to the below if
block and just have it resourceBuilder.WithArgs(AddOpenTelemetryArguments);
since the if
block is duplicated.
Closes #221
PR Checklist