Skip to content
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

Add a UV package manager #327

Merged
merged 17 commits into from
Jan 13, 2025
Merged
Prev Previous commit
Next Next commit
Merge from main
  • Loading branch information
tonybaloney committed Jan 11, 2025
commit 161dd77d12a5843a64cdebc901fa82dc5193143c
2 changes: 1 addition & 1 deletion src/CSnakes.Runtime/PackageManagement/PipInstaller.cs
Original file line number Diff line number Diff line change
@@ -14,7 +14,7 @@ public Task InstallPackages(string home, IEnvironmentManagement? environmentMana
string requirementsPath = Path.GetFullPath(Path.Combine(home, requirementsFileName));
if (File.Exists(requirementsPath))
{
logger.LogInformation("File {Requirements} was found.", requirementsPath);
logger.LogDebug("File {Requirements} was found.", requirementsPath);
InstallPackagesWithPip(home, environmentManager, $"-r { requirementsFileName}", logger);
}
else
You are viewing a condensed version of this merge commit. You can view the full changes here.