-
Notifications
You must be signed in to change notification settings - Fork 790
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 --system
flag for opt-in non-virtualenv installs
#2046
Conversation
62796c9
to
b18f393
Compare
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.
The testing looks like a good start to me!
@zanieb - Do you want me to check-in the testing (perhaps making it |
77e274c
to
706108c
Compare
@charliermarsh I can take ownership of productionizing them from wherever you want to leave it — workflow dispatch seems fine |
2942e40
to
24d3eaf
Compare
6b40ac0
to
7881b04
Compare
run: cargo build | ||
|
||
- name: "Print Python path" | ||
run: echo $(which python) |
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.
I don't think Windows has an echo
command or a which
command
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.
It has a where
command
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.
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.
🤯
01a6dd5
to
778c1a2
Compare
82c4c91
to
fa3f6ee
Compare
fa3f6ee
to
0c946d6
Compare
🙏 |
Summary
This is essentially a wrapper around something like
--python $(which python3)
, but gives users a portable and streamlined way to solve the common pain point of usinguv
in GitHub Actions or a Docker container.See: #1526.