pipenv
pipenv copied to clipboard
Python Development Workflow for Humans.
### Issue description Not sure if this is to be considered a bug, but it's unexpected behavior for me given the documentation. If I specify the 'index' option for a...
##### Issue description `Pipenv.lock` file might contain different `markers` after `pipenv lock`. This issue is quite annoying when you deal with a `Pipfile` that contains a lot of requirements especially...
Similar to issue #2729, I am also using tensorflow. Unfortunately, my dev and prod setups both run linux and are separated effectively only by the presence of GPUs. Having read...
As a user, it took me a long time to figure out why transitive dependencies of a VCS dependency weren't appearing in my lockfile. The symptom is subtle, and the...
Frequently I use package installed in global site-packages to perform task like debugging or performance tuning, but I don't want to create a virtualenv via --system-site-packages , because that would...
Hello, everyone! I don't know why not use `index-url` defined in `/etc/pip.conf`. Currently, `pipenv` use `source.url` in Pipfile and a runtime option `--pypi-mirror` to specify the pypi index page. In...
I have following definition in `requirements.txt`: ``` hg+ssh://[email protected]/python-verkkogml/#egg=verkkogml ``` In `Pipfile` it's imported as masking username incorrectly: ``` verkkogml = {hg = "ssh://****@private.repo/python-verkkogml/"} ``` Which causes Pipenv to query for...
### Issue description The latest two releases (2021.11.9 and 2021.11.15) no longer support single quotes around environment variables (in order to handle special characters in the environment variables) in Pipfiles...
### Issue description With a Pipfile like this... ``` [[source]] url = "https://pypi.org/simple" verify_ssl = true name = "pypi" [[source]] url = "https://pypi.ourinternalrepo.com/simple" verify_ssl = true name = "our-pypi" [packages]...