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

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: |
| [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