in version 9.0.0 pypenv install always installs dev-packages (regression ?)
See original GitHub issuePipenv 9.0.0 always install dev packages, instead of just installing packages from [packages]
section.
Pipenv 8.3.2 works as expected.
Describe your environment
- Docker image : python:3.6.3-alpine
- Python version: 3.6.3
- Pipenv version: 9.0.0
Expected result
pipenv install
should only install packages from [packages]
section
Actual result
pipenv install
actually installs all packages, both from [packages]
and [dev-packages]
section
Steps to replicate
[[source]]
url = "https://pypi.python.org/simple"
verify_ssl = true
name = "pypi"
[packages]
django = "*"
[dev-packages]
ipython = "*"
$ pipenv install
$ pipenv graph
Django==2.0
- pytz [required: Any, installed: 2017.3]
ipython==6.2.1
- decorator [required: Any, installed: 4.1.2]
- jedi [required: >=0.10, installed: 0.11.0]
- parso [required: ==0.1.0, installed: 0.1.0]
- pexpect [required: Any, installed: 4.3.0]
- ptyprocess [required: >=0.5, installed: 0.5.2]
- pickleshare [required: Any, installed: 0.7.4]
- prompt-toolkit [required: >=1.0.4,<2.0.0, installed: 1.0.15]
- six [required: >=1.9.0, installed: 1.11.0]
- wcwidth [required: Any, installed: 0.1.7]
- pygments [required: Any, installed: 2.2.0]
- setuptools [required: >=18.5, installed: 38.2.4]
- simplegeneric [required: >0.8, installed: 0.8.1]
- traitlets [required: >=4.2, installed: 4.3.2]
- decorator [required: Any, installed: 4.1.2]
- ipython-genutils [required: Any, installed: 0.2.0]
- six [required: Any, installed: 1.11.0]
Issue Analytics
- State:
- Created 6 years ago
- Comments:5 (4 by maintainers)
Top Results From Across the Web
Basic Usage of Pipenv - Read the Docs
$ pipenv install is used for installing packages into the pipenv virtual environment and updating your Pipfile. Along with the basic install command,...
Read more >pipenv fails to install all my packages, and then ... - GitHub
FYI: Just running python3 -m pip install --upgrade pip manually before running tox gives me the same issue. I'm not a Python dev...
Read more >pipenv Changelog - pyup.io
- Pipenv can now install relative file paths. - Better messaging around failed installs. - More resilient network io when retrieving data from...
Read more >pipenv Documentation - Read the Docs
PIPENV FEATURES Generates and checks file hashes for locked dependencies when installing from Pipfile. lock. Automatically install required Python version when ...
Read more >Common Pipenv Errors and How to Solve Them: Why Won't it ...
The second most common reason locking fails is that we attempt to install a package that is a pre-release version. You can resolve...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Thanks for checking in @cailloumajor. We’ve had some issues with our testing infrastructure that came up as a result of our recent move to pypa. These are currently blocking the release but I’m hoping to find time to get this resolved this weekend.
@k4nar, we’ll have a release out later today. We’ve been waiting to verify there aren’t any other high priority bugs lurking before we bump the version. Thanks for your patience 😃