-
Notifications
You must be signed in to change notification settings - Fork 269
[Python] Change .venv
script to be more compatible with IDEs
#2259
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,54 @@ | ||
#!/bin/sh | ||
set -eu | ||
STATE_FILE="$DEVBOX_PROJECT_ROOT/.devbox/venv_check_completed" | ||
|
||
if ! [ -d "$VENV_DIR" ]; then | ||
echo "Creating new venv environment in path: '${VENV_DIR}'" | ||
python3 -m venv "$VENV_DIR" | ||
echo "You can activate the virtual environment by running '. \$VENV_DIR/bin/activate' (for fish shell, replace '.' with 'source')" >&2 | ||
is_valid_venv() { | ||
[ -f "$1/bin/activate" ] && [ -f "$1/bin/python" ] | ||
} | ||
|
||
is_devbox_venv() { | ||
[ "$1/bin/python" -ef "$DEVBOX_PACKAGES_DIR/bin/python" ] | ||
} | ||
|
||
create_venv() { | ||
python -m venv "$VENV_DIR" --clear | ||
echo "*\n.*" >> "$VENV_DIR/.gitignore" | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. nice |
||
} | ||
|
||
# Check if we've already run this script | ||
if [ -f "$STATE_FILE" ]; then | ||
# "We've already run this script. Exiting..." | ||
exit 0 | ||
fi | ||
|
||
# Check that Python version supports venv | ||
if ! python -c 'import venv' 1> /dev/null 2> /dev/null; then | ||
echo "\033[1;33mWARNING: Python version must be > 3.3 to create a virtual environment.\033[0m" | ||
touch "$STATE_FILE" | ||
exit 1 | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. does this work after the user has updated their python version? i.e. by creating the state-file, will it skip running again to create the venv after upgrading python There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Yes it should, because the python in the venv is a symlink to the python in our Devbox profile, which is a symlink to the nix store. I'll test a few times to make sure There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Confirmed, once the |
||
fi | ||
|
||
# Check if the directory exists | ||
if [ -d "$VENV_DIR" ]; then | ||
if is_valid_venv "$VENV_DIR"; then | ||
if ! is_devbox_venv "$VENV_DIR"; then | ||
echo "\033[1;33mWARNING: Virtual environment at $VENV_DIR doesn't use Devbox Python.\033[0m" | ||
read -p "Do you want to overwrite it? (y/n) " -n 1 -r | ||
echo | ||
if [[ $REPLY =~ ^[Yy]$ ]]; then | ||
echo "Overwriting existing virtual environment..." | ||
create_venv | ||
else | ||
echo "Using your existing virtual environment. We recommend changing \$VENV_DIR to a different location" | ||
touch "$STATE_FILE" | ||
exit 1 | ||
fi | ||
fi | ||
else | ||
echo "Directory exists but is not a valid virtual environment. Creating a new one..." | ||
create_venv | ||
fi | ||
else | ||
echo "Virtual environment directory doesn't exist. Creating new one..." | ||
create_venv | ||
fi |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,14 @@ | ||
{ | ||
"name": "python", | ||
"version": "0.0.3", | ||
"description": "Python in Devbox works best when used with a virtual environment (vent, virtualenv, etc.). Devbox will automatically create a virtual environment using `venv` for python3 projects, so you can install packages with pip as normal.\nTo activate the environment, run `. $VENV_DIR/bin/activate` or add it to the init_hook of your devbox.json\nTo change where your virtual environment is created, modify the $VENV_DIR environment variable in your init_hook", | ||
"version": "0.0.4", | ||
"description": "Python in Devbox works best when used with a virtual environment (venv, virtualenv, etc.). Devbox will automatically create a virtual environment using `venv` for python3 projects, so you can install packages with pip as normal.\nTo activate the environment, run `. $VENV_DIR/bin/activate` or add it to the init_hook of your devbox.json\nTo change where your virtual environment is created, modify the $VENV_DIR environment variable in your init_hook", | ||
"env": { | ||
/* | ||
This is a block comment | ||
*/ | ||
"VENV_DIR": "{{ .Virtenv }}/.venv" | ||
"VENV_DIR": "{{ .DevboxProjectDir }}/.venv" | ||
}, | ||
"create_files": { | ||
"{{ .Virtenv }}/bin/venvShellHook.sh": "pip/venvShellHook.sh" | ||
"{{ .Virtenv }}/bin/venvShellHook.sh": "pip/venvShellHook.sh" | ||
}, | ||
// this is a line comment above shell | ||
"shell": { | ||
"init_hook": [ | ||
"{{ .Virtenv }}/bin/venvShellHook.sh" | ||
] | ||
"init_hook": ["{{ .Virtenv }}/bin/venvShellHook.sh"] | ||
} | ||
} |
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.
Why get rid of the shebang?