You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Please provide the following details when opening an issue:
Operating System (uname -a)
Fedora 33
zsh version (zsh --version)
5.8
autoswitch-virtualenv version
echo "$AUTOSWITCH_VERSION"
3.1.1
How is zsh-autoswitch-virtualenv installed?
Other (please specify)
Manually using checked out repository
Steps to reproduce the issue
Currently install_requirements will install in editable mode by default. However, the pipenv block in mkvenv does not just installs in dev mode. This is a mis-match and could be solved with
diff --git a/autoswitch_virtualenv.plugin.zsh b/autoswitch_virtualenv.plugin.zsh
index 87123c1..f715ddd 100644
--- a/autoswitch_virtualenv.plugin.zsh
+++ b/autoswitch_virtualenv.plugin.zsh
@@ -294,7 +294,7 @@ function mkvenv()
return
fi
# TODO: detect if this is already installed
- pipenv install --dev $params
+ pipenv install --dev --editable $params .
_activate_pipenv
return
elif [[ "$venv_type" == "poetry" ]]; then
The text was updated successfully, but these errors were encountered:
Issue Details
Please provide the following details when opening an issue:
Operating System (uname -a)
Fedora 33
zsh version (zsh --version)
5.8
autoswitch-virtualenv version
How is zsh-autoswitch-virtualenv installed?
Manually using checked out repository
Steps to reproduce the issue
Currently
install_requirements
will install in editable mode by default. However, thepipenv
block inmkvenv
does not just installs in dev mode. This is a mis-match and could be solved withThe text was updated successfully, but these errors were encountered: