Skip to content

Commit 662c7cc

Browse files
committed
fix(python plugin): remove UV_PYTHON env variable
1 parent 3c441c8 commit 662c7cc

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

plugins/python.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,7 @@
33
"version": "0.0.4",
44
"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",
55
"env": {
6-
"VENV_DIR": "{{ .DevboxProjectDir }}/.venv",
7-
"UV_PYTHON": "{{ .DevboxProjectDir }}/.venv/bin/python"
6+
"VENV_DIR": "{{ .DevboxProjectDir }}/.venv"
87
},
98
"create_files": {
109
"{{ .Virtenv }}/bin/venvShellHook.sh": "python/venvShellHook.sh"

0 commit comments

Comments
 (0)