question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

in version 9.0.0 pypenv install always installs dev-packages (regression ?)

See original GitHub issue

Pipenv 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
  1. Docker image : python:3.6.3-alpine
  2. Python version: 3.6.3
  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:closed
  • Created 6 years ago
  • Comments:5 (4 by maintainers)

github_iconTop GitHub Comments

2reactions
nateprewittcommented, Dec 15, 2017

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.

1reaction
nateprewittcommented, Dec 8, 2017

@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 😃

Read more comments on GitHub >

github_iconTop 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 >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found