Skip to content
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

Add limitation to pipenv.md #1369

Open
wants to merge 5 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions docs/references/strategies/languages/python/pipenv.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,8 @@ dependencies. This will fail unless `pipenv install` has been run in that direct

## Limitations

- Our pipenv strategy currently reports all dependencies as direct. rather than differentiating between direct and transitive.

- Pipfile.lock does not report edges, if `pipenv graph --json-tree` fails, we will
not be able to detect the edges between dependencies.
ryanlink marked this conversation as resolved.
Show resolved Hide resolved

Expand Down
2 changes: 1 addition & 1 deletion docs/references/strategies/languages/python/python.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ The python buildtool ecosystem consists of three major toolchains: setuptools

| Strategy | Direct Deps | Transitive Deps | Edges | Container Scanning |
| ---------------------------------------------- | ------------------ | ------------------ | ------------------ | ------------------ |
| [pipenv](pipenv.md) | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | :x: |
| [pipenv](pipenv.md) | :heavy_check_mark: | :x: | :heavy_check_mark: | :x: |
ryanlink marked this conversation as resolved.
Show resolved Hide resolved
| [pipfile](pipenv.md) | :heavy_check_mark: | :heavy_check_mark: | :x: | :x: |
| [requirements.txt & setuptools](setuptools.md) | :heavy_check_mark: | :white_check_mark: | :white_check_mark: | :heavy_check_mark: |
| [setup.py & setuptools](setuptools.md) | :heavy_check_mark: | :white_check_mark: | :white_check_mark: | :heavy_check_mark: |
Expand Down
Loading