-
-
Notifications
You must be signed in to change notification settings - Fork 151
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
handling of extra_requires #47
Comments
Sorry for replying so late, I missed this issue somehow. What do you mean by "not visible on PyPI"? |
PyPI shows the line
This dependency is visible at
|
Ok. I'll have a look at it. Thanks. |
Looks like this is the same as pypa/pipenv#1013 |
For future reference:
|
This should be no longer the case. |
Hi, unfortunately, this seems to still be a problem. To replicate this, I created a fresh virtualenv with just pipdeptree and django-import-export 3.2.0
[project.optional-dependencies]
all = [
"markuppy",
"odfpy",
"openpyxl>=2.6.0",
"pandas",
"pyyaml",
"tabulate",
"xlrd",
"xlwt",
]
cli = ["tabulate"]
html = ["markuppy"]
ods = ["odfpy"]
pandas = ["pandas"]
xls = ["xlrd", "xlwt"]
xlsx = ["openpyxl>=2.6.0"]
yaml = ["pyyaml"] Which can be seen in
Unfortunately, pipdeptree appears to be unable to find the dependency between `tablib` and it's optional dependenciesThis is my
This is my
I have also tried on |
Interestingly, |
I see this might be related to #107 too |
I see it's due to lack of resources. I won't bother you no more! |
PR welcome 🤗 |
I'll see what I can do, but no promises |
scikit-image
(https://pypi.python.org/pypi/scikit-image) depends ondask[array]
(https://pypi.python.org/pypi/dask) (not visible on PyPI but this can be checked by installing in a clean venv).dask[array]
itself depends ontoolz
andnumpy
.pipdeptree does not realize this and considers
toolz
andnumpy
to not be dependents of anything after a clean install ofscikit-image
.The text was updated successfully, but these errors were encountered: