Skip to content

Commit

Permalink
Update walk.py to support Poetry
Browse files Browse the repository at this point in the history
Poetry does not store it's dependencies in requirements.txt
  • Loading branch information
aylusltd authored Nov 15, 2024
1 parent 471f8df commit 944d07b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/verinfast/dependencies/walk.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ def walk(logger, path: str = "./", output_file="./dependencies.json"):
)

py_walker = PyWalker(
manifest_files=["requirements.txt", "requirements-dev.txt"],
manifest_files=["requirements.txt", "requirements-dev.txt", "pyproject.toml", "poetry.lock"],
manifest_type="txt",
logger=logger,
root_dir=path
Expand Down

0 comments on commit 944d07b

Please sign in to comment.