-
Notifications
You must be signed in to change notification settings - Fork 43
Print correct cmd to activate venv after mlem build venv
#597
Conversation
@@ -14,7 +14,7 @@ | |||
"aiohttp<4", | |||
"aiohttp_swagger<2", | |||
"Jinja2>=3", | |||
"fsspec>=2021.7.0", | |||
"fsspec>=2021.7.0,<2023.1", |
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.
to fix errors like https://github.com/iterative/mlem/actions/runs/4022310524/jobs/6911940431
didn't have time to investigate
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.
Create an issue?
Codecov ReportBase: 86.42% // Head: 86.43% // Increases project coverage by
Additional details and impacted files@@ Coverage Diff @@
## main #597 +/- ##
==========================================
+ Coverage 86.42% 86.43% +0.01%
==========================================
Files 106 106
Lines 9567 9589 +22
==========================================
+ Hits 8268 8288 +20
- Misses 1299 1301 +2
Help us with your feedback. Take ten seconds to tell us how you rate us. Have a feature suggestion? Share it here. ☔ View full report at Codecov. |
install_cmd.append("--no-cache-dir") | ||
install_cmd.extend(obj.requirements.to_pip()) | ||
run_in_subprocess(install_cmd, error_msg="Error running pip") | ||
if obj.requirements.to_pip(): |
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.
maybe create a variable since it's used twice
close #547