virtualenv
Here are 426 public repositories matching this topic...
Per the tox documentation is mentions that the parallel_show_output setting is a global [tox] setting however this doesn't seem to be the case, i.e., if one's tox.ini file is of the form:
[tox]
parallel_show_output = true
then running tox --parallel auto does not show any output.
According to t
Suppose someone add a new global package and modify the requirements file.
It would be nice if nodeenv had an option to read again the requirements file and reinstall missing dependencies, instead to say Environment already exists
-
Updated
Feb 11, 2019 - Python
mkvirtualenv --help
should print a help message and not create a virtualenv named --help. The same applies to almost all commands in compat_aliases.fish
-
Updated
Oct 7, 2017 - Python
-
Updated
Apr 30, 2020 - Python
-
Updated
May 21, 2020 - Python
-
Updated
May 5, 2020 - Shell
-
Updated
Oct 24, 2019 - Shell
-
Updated
May 14, 2020 - Shell
-
Updated
Sep 19, 2019 - Emacs Lisp
Small error in docs
In the last example
>>> list(env.search('requests').items())
[('virtualenv-api', 'An API for virtualenv/pip')]
the search looks for 'requests' but the results are for 'virtualenv-api'.
-
Updated
Feb 15, 2020 - Python
-
Updated
Sep 7, 2016 - Python
-
Updated
Jun 27, 2019 - Python
-
Updated
May 7, 2020 - Python
-
Updated
Mar 28, 2020 - Python
-
Updated
Aug 13, 2017
-
Updated
May 26, 2020 - Emacs Lisp
-
Updated
Apr 5, 2020 - Groovy
-
Updated
Jan 2, 2017 - Python
-
Updated
Mar 29, 2018 - Python
Improve this page
Add a description, image, and links to the virtualenv topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the virtualenv topic, visit your repo's landing page and select "manage topics."


Issue description
pipenv uninstall --all-devuninstalls shared default dependenciesExpected result
When running
pipenv uninstall --all-devI'd expect all dev dependencies and their dependencies to be removed, except those shared by default dependencies. Doing so breaks the application and forces me to runpipenv install.Actual result
At least on one scenario th