pipenv
pipenv copied to clipboard
Python Development Workflow for Humans.
This project is used by millions of people, but the number of contributions is not on par with the issues number. I am a bit burnt out by the bugs...
Proposing PEEP-007 which would allow specifying pre-releases only for selected packages. This has been discussed in https://github.com/pypa/pipenv/issues/1760, added the original author of the issue (@gsemet). Let me know if more...
### Issue description ``` $ pipenv --quiet install Installing dependencies from Pipfile.lock (d60503)... 🐍 ▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉ 0/0 — 00:00:00 To activate this project's virtualenv, run pipenv shell. Alternatively, run a command...
These options are described here: https://pip.pypa.io/en/stable/cli/pip/#exists-action-option If the user sets a different string, a warning should be printed.
### Issue description When installing from a repository that has both a pyproject.toml and a setup.py via `pipenv install -e git+ssh://[email protected]/teamname/[email protected]#egg=package-name` pip correctly installs the wheel, but when pipenv goes...
See - https://github.com/pypa/pipenv/issues/3651 (comment: https://github.com/pypa/pipenv/issues/3651#issuecomment-512110655) ---------- # PEEP-006: Pass extra pip arguments on a per-entry basis This PEEP proposes the introduction of an argument `extra_pip_options` in Pipfile package entries, which...
### Issue description I can't install packages with just Pipfile.lock, I also need Pipfile. During deployment I am doing. ```shell PIP_NO_CACHE_DIR=false PIPENV_VENV_IN_PROJECT=true pipenv install --ignore-pipfile ``` It returns a 0...
Hi. I do not find a way to freeze the pip version installed within the virtualenv (like `pipenv install pip==19.3.1`). The latest version as of today (20.0.1) has a bug...
### Issue description `pipenv clean -h` says: ``` Uninstalls all packages not specified in Pipfile.lock. ``` I understand from the help text that my Pipfile.lock as is will be used...
### Issue description ``` [[source]] url = "https://some_index name = "some_index" [packages] mypkg = "3.0.0" [dev-packages] mypkg = {path = "./mypkg", editable = true} ``` Consider the Pipfile above. I...