-
-
Notifications
You must be signed in to change notification settings - Fork 4.3k
devenv: remove legacy ensure-venv #68224
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
Conversation
…venv-remove-ensure-venv
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.
require() { | ||
command -v "$1" >/dev/null 2>&1 | ||
} | ||
|
||
query-valid-python-version() { |
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 might still be useful -- I think there's still ways people can manually get out of sync ?
Bundle ReportChanges will increase total bundle size by 2 bytes ⬆️
|
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.
scripts/do.sh
Outdated
@@ -16,20 +16,11 @@ https://github.com/getsentry/devenv#install | |||
exit 1 | |||
fi | |||
|
|||
if [[ ${GETSENTRY:-0} -eq 1 ]]; then |
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.
soooo this is still needed, but not if i move make setup-git into devenv sync
: https://github.com/getsentry/getsentry/pull/13540/files#diff-76ed074a9305c04054cdebb9e9aad2d818052b07091de1f20cad0bbac34ffb52R28
This pull request has gone three weeks without activity. In another week, I will close it. But! If you comment or otherwise update it, I will reset the clock, and if you add the label "A weed is but an unloved flower." ― Ella Wheeler Wilcox 🥀 |
this removes a bunch of legacy code surrounding ensure-venv stuff by requiring devenv (it's already required in .envrc) and replacing it with a much simpler VIRTUAL_ENV check
also good with bootstrap here: getsentry/devenv#109