-
-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Closed
Description
Pipenv seems to process only the first element in a list of extras.
Given a folder with the following Pipfile (otherwise empty):
[[source]]
url = "https://pypi.python.org/simple"
verify_ssl = true
name = "pypi"
[dev-packages]
[packages]
apache-airflow = {extras = ["s3", "druid"], version = "==1.8.2"}
[requires]
python_version = "3.5"
pipenv install
installs 53 packages. The package pydruid
, which is defined in extra druid, is missing.
Given this Pipfile with inverted order of extras:
[[source]]
url = "https://pypi.python.org/simple"
verify_ssl = true
name = "pypi"
[dev-packages]
[packages]
apache-airflow = {extras = ["druid", "s3"], version = "==1.8.2"}
[requires]
python_version = "3.5"
pipenv install
installs 52 packages. The packages boto
and filechunkio
, which are defined in extra s3, are missing.
Describe your environment
- OS Type: Mac OS 10.13.1
- Python version: Python 2.7.10
- Pipenv version: pipenv, version 8.3.2
Metadata
Metadata
Assignees
Labels
No labels